Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
git add --all
git commit -m 'msg'
git status
git log --oneline
git checkout branch
This should get you working..
https://try.github.io/levels/1/... -
Root797347ySet up some autodeploy git hooks and just do this:
git push staging staging:master
and
git push production production:master
(Or aliases like `gpqa` for the first.)
So easy 😊 -
teilo4067yOr, even worse, my old standby: Using ssh, vim, and nginx reload on a production box.
In an emergency I still do this, only now I run the git commit / push from the server.
Related Rants
Often saying fuck it when I've got a project and I kind of really need to use git but I'm not good with it so I just go back to good old scp again 😅
rant
wk106