[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Paparazzi-devel] GIT uploading problem
From: |
Felix Ruess |
Subject: |
Re: [Paparazzi-devel] GIT uploading problem |
Date: |
Fri, 1 Apr 2011 09:53:22 +0200 |
Hi,
assuming that the remote named paparazzi points to the main paparazzi
repository, you can't push to it directly since you don't have write
access there. What you want to do is to push to your own fork on
github, probably named Bruzzlee from what you wrote....
So
git push Bruzzlee master
If you made a commit and want to completely throw that last commit
away you can reset your branch to the commit before that one:
git reset --hard HEAD^
If you just want to make a new commit to "undo" the changes of another
commit, e.g. the last one run:
git revert HEAD
http://gitready.com/intermediate/2009/03/16/rolling-back-changes-with-revert.html
Cheers, Felix
On Thu, Mar 31, 2011 at 2:13 PM, Leandro Chelini
<address@hidden> wrote:
> Hi all
>
> I want to upload our actual project to git.
>
> What I did:
> - I copied the project from another computer to the "git"-computer
> - cd to/the/preject/dir
> - git push paparazzi master
>
> Then:
> error: failed to push some refs to 'paparazzi'
>
> git status:
> # On branch master
> # Your branch is ahead of 'Bruzzlee/master' by 2 commits.
>
> file
> file
> file
> ...
> ...
> ...
>
>
> git commit -m "Change Description"
>
>
> could it be, that my fork on the git server isn't the same like that one
> I've downloaded a moth ago (modified version on my pc)?
> I've accidentally deleted everything on my branch. How can I do a "step
> back" on git?
>
>
> thanks Bruzzlee
>
> _______________________________________________
> Paparazzi-devel mailing list
> address@hidden
> http://lists.nongnu.org/mailman/listinfo/paparazzi-devel
>
- Re: [Paparazzi-devel] GIT uploading problem,
Felix Ruess <=