git - Your branch is ahead of 'origin/master' by 1 commit

前端 未结 6 1266
眼角桃花
眼角桃花 2020-12-12 10:03

I am newbie in git and I am working on git.

I added some files in git :

git add 
git add 

then I want

相关标签:
6条回答
  • 2020-12-12 10:34

    If you just want to throw away the changes and revert to the last commit (the one you wanted to share):

    git reset --hard HEAD~
    

    You may want to check to make absolutely sure you want this (git log), because you'll loose all changes.

    A safer alternative is to run

    git reset --soft HEAD~ # reset to the last commit
    git stash              # stash all the changes in the working tree 
    git push               # push changes 
    git stash pop          # get your changes back 
    
    0 讨论(0)
  • 2020-12-12 10:37

    You cannot push anything that hasn't been committed yet. The order of operations is:

    1. Make your change.
    2. git add - this stages your changes for committing
    3. git commit - this commits your staged changes locally
    4. git push - this pushes your committed changes to a remote

    If you push without committing, nothing gets pushed. If you commit without adding, nothing gets committed. If you add without committing, nothing at all happens, git merely remembers that the changes you added should be considered for the following commit.

    The message you're seeing (your branch is ahead by 1 commit) means that your local repository has one commit that hasn't been pushed yet.

    In other words: add and commit are local operations, push, pull and fetch are operations that interact with a remote.

    Since there seems to be an official source control workflow in place where you work, you should ask internally how this should be handled.

    0 讨论(0)
  • 2020-12-12 10:46

    I resolved this by just running a simple:

    git pull
    

    Nothing more. Now it's showing:

    # On branch master
    nothing to commit, working directory clean
    
    0 讨论(0)
  • 2020-12-12 10:50

    git reset HEAD^

    then the modified files should show up.

    You could move the modified files into a new branch

    use,

    git checkout -b newbranch

    git checkout commit -m "files modified"

    git push origin newbranch

    git checkout master

    then you should be on a clean branch, and your changes should be stored in newbranch. You could later just merge this change into the master branch

    0 讨论(0)
  • 2020-12-12 10:51
    git reset HEAD <file1> <file2> ...
    

    remove the specified files from the next commit

    0 讨论(0)
  • 2020-12-12 10:52

    git reset HEAD^ --soft (Save your changes, back to last commit)

    git reset HEAD^ --hard (Discard changes, back to last commit)

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