#pragma: no cover
c.f. coala/coala-bears#1618Welcome @ragvri! :tada:
To get started, please follow our newcomers guide. Most issues will be explained there and in linked pages - it will save you a lot of time, just read it. Really.
Do not take an issue if you don't understand it on your own. Especially if you are new you have to be aware that getting started with an open source community is not trivial: you will have to work hard and most likely become a better coder than you are now just as we all did.
Don't get us wrong: we are very glad to have you with us on this journey into open source! We will also be there for you at all times to help you with actual problems. :)
git commit --amend
LicenseCheckBearTest: Use with to close file
Fixes https://github.com/coala/coala-bears/issues/1704
git push -f
git push --set-upstream origin rjmessibarca
git remote -v
git push -f --set-upstream origin rjmessibarca
git remote add upstream https://github.com/coala/coala-bears
git remote -v
changes requested
in the pull request
git push -f --set-upstream origin rjmessibarca
Can you please tell me what does this do
--set-upstream origin
specified that for your branch called rjmessibarca
, you want the push to always send it to the remote called origin
rjmessibarca, you can do
git push -f` and it will automatically know where to send it
-f
in git push
?
git commit --amend
, you 'changed history' (in a very small way)
--force
or -f
-f
git push -f origin rjmessibarca
--set upstream origin
git commit --amend; git push -f origin rjmessibarca
281dbf3
git commit --amend
just allows us to change the commit message?
git show
will also show the identifier 281dbf3
(but it will have more digits on your computer)
git commit --amend
allows you to change the contents and the commit message
git commit -a --amend
is a quick way to include all modifications to files and update the commit message
git reset HEAD~1
git commit -a --amend
to add those changes into the one good commit
git commit -a --amend
in say pycharm?
git commit -a --amend
(no change to commit message) git push -f
safety
has changed the constructor for Vulnerability
in this PR I seperate bunches of imports...
import x
import y
import z
import e
here, x and y are passed to the isort
differently than z and e.