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
-
I found this really helpful:
http://nvie.com/posts/...
IMO there's quite a steep learning curve to Git. You have to read and re-read whatever articles you can find before it starts to make sense. Ignore articles about cherry-picking or merge vs rebase for now. Just learn the basics and get your head around a decent branching model, the rest will come in time. -
I already learned rebase,merge,cherry-pick,commit,reset,revert,checkout from learngitbranching now I want to learn the rest
-
galena71727yAll youneed to know!
cd: change directory
ls: show the files
git clone <url> <branch>
git status
git add <name>
git commit -m "Message"
git push
git pull
git branch <branch> (adds a branch)
git checkout <branch> (switch to branch)
git merge <branch> (gets all the changes from the brach to current branch) -
@cuervo
Is udacity course provides git and GitHub whole knowledge or there would be something missing in it?? -
cuervo14247y@aakash0121 it'll teach you the basics of what you need so you can use both. It's a good starting point.
Hey guys!! Can anyone tell me from where I can learn how to use git..
undefined