leon@DGLIRUAN2 /F/linux/android/leon/workspace/AngoWidget (master) $ git log commit 2f847e3a858ecb2f843e7820cd8eaedf2ec7102d Author: leon <llrraa@qq.com> Date: Mon Jul 14 23:38:58 2014 +0800 alarm working, but every time it sets another timer…
Try this: $ git add -u This tells git to automatically stage tracked files -- including deleting the previously tracked files. If you are using git 2.0, you should now use: $ git add -u :/ Warning, starting git 2.0 (mid 2013), this will stage files o…
$ git status # On branch test # Untracked files: # (use "git add <file>..." to include in what will be committed) # # .python-version nothing added to commit but untracked files present (use "git add" to track) $ git clean -f -d…
This tutorial is by Malek Trabelsi, a passionate iOS developer from Tunisia focused primarily on mobile and web technologies. Whether you’re a solo developer or working on a team, if you’re not using source control for your projects, you should be. S…
https://www.atlassian.com/git/tutorials/git-gc The git gc command is a repository maintenance command. The "gc" stands for garbage collection. Executing git gc is literally telling Git to clean up the mess it's made in the current repository. Ga…