Viewing profile — klj613--
klj613--
HN member- Joined
- Fri, Oct 05, 2012, 6:08 PM UTC
- HN karma
- 8
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About klj613--
No profile information was provided.
Recent public activity
-
comment
Comment #5929745
git is a SCM and should not be on production systems. instead you should have a build server which builds up a package (rpm, deb, tarball?) which is then used to deploy across the …
-
comment
Comment #5730256
Arch + Awesome .. + urxvt + vim
-
comment
Comment #5634804
Please use rebase... but only if you understand it! Do not commit to your commits... I experiment on branches... I use commits as stashes... I end up with 100s of local branches...…
-
comment
Comment #4699628
you need agent forwarding to ssh into a server to do a git pull from _that_ server. e.g. a dev vm.
-
comment
Comment #4638231
Personally I think its better using the CLI for git. I commit very often however I rewrite the commits. In other words, I mess with my history and it is a good thing (My commits ai…
-
comment
Comment #4618043
1. `git pull` = fetch + merge If the merge has conflicts, then you got to solve the conflicts and do the commit manually (entering the commit message) If the merge doesn't have con…
-
comment
Comment #4618003
Best way to learn git is in the command line (get away from any GUI). And then play with repositories to see what the commands actually do. "Don't mess with history"? I don't have …