diff --git a/content/post/git-tips.md b/content/post/git-tips.md new file mode 100644 index 0000000..e3121e0 --- /dev/null +++ b/content/post/git-tips.md @@ -0,0 +1,27 @@ ++++ +title = "Git Tips" +date = 2022-08-22T12:58:59-04:00 +lastmod = 2022-08-22T12:58:59-04:00 +tags = ["git"] +categories = ["Coding"] +imgs = [] +cover = "" # image show on top +readingTime = true # show reading time after article date +toc = true +comments = false +justify = false # text-align: justify; +single = false # display as a single page, hide navigation on bottom, like as about page. +license = "" # CC License + ++++ + +# Gitignore not working + + git rm -rf --cached . + git add . + + + +# Recover last commit + + git reset HEAD~ \ No newline at end of file