Git Tips And Workflows
31–40 of 40 posts
Re: Git Tips And Workflows
#32Has anybody seen a "git for people who have no idea how to use git" tutorial? I use git for keeping track of some personal projects, but the extent to which I understand how to use it is: "git commit origin master" We had a hackathon this weekend, and our team had three people on it. I wanted to make it so that they could also commit code into the same repo (I think this it the right term?), but had absolutely no ide…
It's a bit light on concepts but is fairly practical.
Re: Git Tips And Workflows
#33Git is so ... stone age!
Re: Git Tips And Workflows
#34Why don't just use "git reset --hard "?
At least if the better-branch and master commit in common is the last commit in master so no history rewrite will happen when pushing.
Re: Git Tips And Workflows
#35Am I alone in using git extensions? I've been very happy with it and its ability to display git's "state" right in the window. I usually have one monitor with VS and one with GitExtentions
Re: Git Tips And Workflows
#36> Making ‘git diff’ wrap long lines ... My git diff would not wrap lines and leave a lot of information hidden from view in my terminal. Git is so ... stone age!
Re: Git Tips And Workflows
#37Has anybody seen a "git for people who have no idea how to use git" tutorial? I use git for keeping track of some personal projects, but the extent to which I understand how to use it is: "git commit origin master" We had a hackathon this weekend, and our team had three people on it. I wanted to make it so that they could also commit code into the same repo (I think this it the right term?), but had absolutely no ide…
Still working on getting the videos up, but the slides should give a little bit of an introduction, albeit slightly confusing without the speaking.
Re: Git Tips And Workflows
#38Re: Git Tips And Workflows
#39I ask the same thing as blhack, I would like a tutorial. I only know how to use the basics, pushing to github and heroku, and I've been using it for a long time.
Re: Git Tips And Workflows
#40Earlier quoted context omitted.
Use SVN. There's lack of "svn for people who have no idea how to use svn" tutorials, and when they're published, they tend to be single-paragraph. I'm not sure git is a perfect solution for any project. Unless you intend to pull each other's modifications, the idea of a central "trunk" and custom "branches" is easy to explain to anybody in 5 minutes.
Isn't pulling each others modifications kind of the point of VCS?