Tag: git
-
Most common commands you’ll need when working with GIT
checkout a repository create a working copy of a local repository by running the commandgit clone /path/to/repositorywhen using a remote server, your command will begit clone username@host:/path/to/repository workflow your local repository consists of three “trees” maintained by git. the first one is your Working Directory which holds the actual files. the second one is the…