added python api wrapper
Created by: Itxaka
Tried again, sorry for the inconvenience.
Merge request reports
Activity
Created by: Razer6
@jacobvosmaer Ping - Looks better now
By Administrator on 2013-08-06T19:29:49 (imported from GitLab project)
By Administrator on 2013-08-06T19:29:49 (imported from GitLab)
Created by: coveralls
Coverage decreased (-0%) when pulling 601fc217451f96b0f9954f38efbb0b8b8ee29d6b on Itxaka:master into 27b7aedd on gitlabhq:master.
By Administrator on 2013-08-06T19:54:45 (imported from GitLab project)
By Administrator on 2013-08-06T19:54:45 (imported from GitLab)
Created by: axilleas
Lol, no don't close it! Open it again please. You can do it!
Here is a quick how to on git squash/rebase, based on your case:
- Make the appropriate changes again.
git add doc/api/README.md
-
git commit -m 'Fix wrong uri'
. Rungit log
and see that your commit is there. -
git rebase -i HEAD~2
(this runs rebase on your two latest commits) - Replace
pick
withsquash
on the commit of step 3, save and exit. - A new editor will appear. Remove the second commit message, save and exit.
- Run
git log
again and see that you latest commit is gone, or rather squashed into the previous one. git push -f your_remote master
- Congratulations you learned basic rebase!
A few notes:
- When contributing to a project it's better to run your changes in a different branch.
-
git push -f
and rebase in general is highly NOT recommended if others have already pulled your previous commits, as it rewrites history. It's cool in these cases where you submit a patch and others can do code review ;)
So now, please open it again and retry! We'll be here if anything goes wrong.
PS: Should we include this mini how to in the guidelines somehow?
By Administrator on 2013-08-07T07:33:15 (imported from GitLab project)
By Administrator on 2013-08-07T07:33:15 (imported from GitLab)
Created by: Itxaka
Oh wow, I can't believe it actually worked this time! I swear I tried the same before and it created more commits instead of squashing them.
Thanks @axilleas !
By Administrator on 2013-08-07T07:49:35 (imported from GitLab project)
By Administrator on 2013-08-07T07:49:35 (imported from GitLab)