Skip to content

MohammedModather144/Git_Course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git_Course

For Learning Course Git And GitHub

Project Notes Course

git status
git add
git commit -m "Message"
git reset head File Name
git branch
git remote -v
git push origin main
git fetch origin
git merge origin
----git pull origin-----
git config -l
git help config
git config -l --show-origin
git config --global user.email
git config --global user.name
git config --global --unset user.name
ssh-keygen -t rsa -b 4096 -C "it.deep.weblearning2020@gmail.com"
cat /Users/enayatech/.ssh/id_rsa.pub
git remote add origin git@github.com:MohammedModather144/Git_Course_2.git
git push origin main
git config --global alias.st status
git branch "all" git checkout -b all
git checkout all
git branch -d "delete branch"
git branch -m "rename branch"
git stash
git stash pop
git stash list
git stash save "message"
git stash apply
git stash pop @stash{0}
git stash drop stash@{0}
git stash show stash@{0}
git stash clear
git tag v2.0 // light wight tage commit
git tag -a v2.0 -m "Second Relase" // netotion tage
git push origin v2.0 // push tage
git tag -l "v1.*" // search tage
git tag -d v1.0 // delete tag in remote local

git push origin --delete v1.0 // delete tag main

About

For Learning Course Git And GitHub

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •