Skip to content

aman-19/Git-Tutorials

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Intructions to use git

  • git pull before starting anywork To make sure everything is in sync
  • git push to push your work
  • To commit your work
    git add .
    git commit -m "message"
    git push --all
    
  • To push the work to master git push origin mayank:master
  • To change the branch git checkout <branch_name>
  • To set the username of github
    git config --global user.email "email@email.com" 
    git config --global user.name "unname" 
    
  • To set the proxy
    git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
    To unset the proxy
    git config --global --unset http.proxy

About

Git commands

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published