Skip to content

guanyuelee/web-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git Reminder

git init 
git status -s

git add file
git add . 

git commit -m "messaage"

git reset HEAD file.index  # remove track. 

git rm -f file
git rm --cached file

git log --pretty=oneline
git reset --hard <id>
git reflog --pretty=oneline

git remote add origin https://github.com/guanyuelee/web-code.git
git branch -M main
git push -u origin main
# git pull origin main --allow-unrelated-histories

# git flashback
git checkout -- file.md

# branch related. 

git branch
git branch -M main # rename the branch

git branch new-branch
git checkout new-branch

git branch main
git merge new-branch

git branch -d reg
git checkout register

# git push branch
git push -u origin payment:pay
git push -u origin payment

git remote show origin

git checkout -b payment origin/pay
git push origin --delete pay

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published