Git与GitHub存储库同步

时间:2018-02-19 10:50:55

标签: windows git github synchronization command

我有一台台式电脑和一台笔记本电脑,我每天都使用GitHub上的同一个存储库(通过Git)。我刚刚搬过来并开始使用Git,这很棒。但是,当我在桌面PC上进行了更改并将它们提交给GitHub时,我会使用什么命令,然后我想将当前GitHub上的所有更改移到我的笔记本电脑文件上以恢复我在笔记本电脑上的工作我在桌面PC / GitHub上停下来的地方?

提前致谢。

3 个答案:

答案 0 :(得分:2)

将存储库克隆到新目录中;

git clone uri_repository.git

将来自远程存储库的更改合并到当前分支中。

git pull 

显示工作树状态。

git status

使用工作树中的当前内容更新索引。

git add .

记录对存储库的更改。

git commit -m 'message'

更新远程引用(refs)以及相关对象。

git push

答案 1 :(得分:1)

您可以使用以下命令将远程存储库同步到本地存储库

/* origin points to your remote repository, master is the branch in which your working */ 

git pull origin master

如果您没有远程即原点设置

/* Here your aliasing your remote repository location to origin, you can name it anything */

git remote add origin your_git_repo_url

如果您不知道当前正在工作的分支

/* This will list all the branches with * preceded which is active one */

git branch

完成本地更改后,您可能希望将代码推送到远程存储库,可以按照以下步骤进行操作

git add .

   OR 

git add file1.txt file2.txt

git commit -m "You commit description"

git push origin master

答案 2 :(得分:1)

要从GitHub从远程存储库中获取代码,请使用命令git pull。这将获取最新更改并将其与您的本地代码合并,以便您拥有最新的代码。您可以找到一个Git备忘单,其中包含您需要的大多数命令here