How to push local changes to a remote git repository on bitbucket

前端 未结 4 1874
情歌与酒
情歌与酒 2020-12-22 15:57

I\'m testing out Git and Bitbucket.

I\'ve created a repository on Bitbucket and have created a local copy of the repo and I am committing files into it. I can\'t see

4条回答
  •  感动是毒
    2020-12-22 16:36

    I'm with Git downloaded from https://git-scm.com/ and set up ssh follow to the answer for instructions https://stackoverflow.com/a/26130250/4058484.

    Once the generated public key is verified in my Bitbucket account, and by referring to the steps as explaned on http://www.bohyunkim.net/blog/archives/2518 I found that just 'git push' is working:

    git clone https://me@bitbucket.org/me/test.git
    cd test
    cp -R ../dummy/* .
    git add .
    git pull origin master 
    git commit . -m "my first git commit" 
    git config --global push.default simple
    git push
    

    Shell respond are as below:

    $ git push
    Counting objects: 39, done.
    Delta compression using up to 2 threads.
    Compressing objects: 100% (39/39), done.
    Writing objects: 100% (39/39), 2.23 MiB | 5.00 KiB/s, done.
    Total 39 (delta 1), reused 0 (delta 0)
    To https://me@bitbucket.org/me/test.git 992b294..93835ca  master -> master
    

    It even works for to push on merging master to gh-pages in GitHub

    git checkout gh-pages
    git merge master
    git push
    

提交回复
热议问题