Syncing with a Local Workspace
Last updated
Was this helpful?
Last updated
Was this helpful?
Unless you created a repository from an existing local directory, The GitHub repositories created in previous sections are purely remote repositories. To sync these remote repositories with a local workspace you can clone your repository into a local directory. Once you clone your repository into a workspace, you can add changes on your local machine and then push them to your remote repository.
To clone your repository you first need an HTTPS link. If your repository is empty you can copy this from the top of your repository page.
If the repository is not empty, you can copy the HTTPS link by:
Clicking on the "code" section on the GitHub repository page
Clicking “code” button
Clicking “HTTPS”
Clicking the clipboard icon
In the command line enter the following:
Now your remote repository is synced to your local workspace. All changes that are explicitly committed and pushed will be added to the remote repository.
At a high level, Git performs Version Control for repositories through branches. Each repository has a master branch which is the mainline of the project (see Git branches guide). Code collaborators can create different versions of the same repository by creating new branches diverging from the master branch (see Git branches guide). Every branch, including master, keeps track of the changes explicitly committed to it..
To push local changes in your cloned repository to the current branch, enter the following commands in your cloned repository:
Git add marks the files you want to include in the next commit (see Git add guide). Using “git add --all” marks all files in the current directory. For more Git add options see Git add guide. At a high level, Git commit stores a “snapshot” of the state of marked files to save to the branch (see this article). Finally “git push” transfers your commit to your remote repository (see this article).
When collaborating with others, you should always make sure you are working with the latest version of the repository before making local changes. To update your local workspace to the latest commit of the remote repository, enter the following command in your local workspace directory:
Git pull fetches and merges the latest commit of the branch your local workspace is currently on. For more on Git pull see this documentation.