Skip to content

Training-by-Chandan/adbl_training

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic Git Commands

  1. git init : Initialize a Git repository
  2. git add : Add files to the staging area
  3. git commit : Commit the changes to the repository (git commit -m "message")
  4. git push : Push the local repository to a remote repository (git push origin master)
  5. git pull : Pull the latest changes from a remote repository (git pull origin master)
  6. git status : Check the status of the local repository (git status)
  7. git log : View the commit history of the local repository (git log)
  8. git diff : View the differences between commits (git diff)
  9. git checkout : Check out a specific commit (git checkout commit-id)
  10. git branch : Create and switch branches (git branch)
  11. git merge : Merge branches (git merge branch-name)

Remote Git Commands

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •