Update a local repo with Git (Bitbucket)

后端 未结 1 507
猫巷女王i
猫巷女王i 2021-01-03 12:06

I switched recently to a Bitbucket/git system to work on my code, and i\'m having some troubles understanding.

Here what I did:

  • Created a repo on Bitbu
相关标签:
1条回答
  • 2021-01-03 12:54

    You need to pull your changes in your local repo on computer A. Run the following (assuming your branch name is master)

    git pull origin master
    

    For a basic guide to git, check out http://rogerdudler.github.io/git-guide/

    0 讨论(0)
提交回复
热议问题