This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
Basic Git Commands 
 Some basic git commands used in the git explanation videos of HackYourFuture: X and X 
 $ git init 
Create a repository 
 $ git add <filename or .> 
To add files to a new commit 
 $ git commit -m "<your commit message>" 
Commit the added files 
 $ git checkout -- <filename> 
Resets a file to how it was in the last commit 
 $ git log…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.