Download and install Git. Create or locate repository. Open Git CMD and navigate to target directory. Copy repository URL and paste into command line. Clone process starts and displays progress
Git removes .git folder using rm -rf command. Command del /F /S /Q /A .git removes Git folder recursively. VS Code uses same rm -rf .git command
Local cloning bypasses Git transport, copying HEAD and objects directories. Local paths are default, URLs are ignored. Symbolic links prevent accidental file copying
BUNDLE files are primarily associated with macOS by Apple. Used for loadable bundles extending application functionality. Commonly used for iMovie plugins and hardware drivers. Also used in Linux for application installation packages
Git is a distributed version control software for saving changes without overwriting. Every developer has a copy of the entire repository. Changes are stored in SHA hashes for fast compression
Git is available for Windows, Mac, and Linux operating systems. Git comes pre-installed on most Mac and Linux machines. Check Git installation by typing "git version" in terminal