sayham-sjb
2/3/2017 - 7:00 PM

Git #git

Git #git

* List all modified file names
    * git whatchanged --since '12/01/2016' --oneline --name-only --pretty=format: | sort | uniq 
    * git log --since="4 day ago" --name-only --pretty=format: | sort -u
    * git whatchanged --since '12/01/2016' --until '12/06/2016' --oneline --name-only --pretty=format: | sort | uniq 
    
* Stash
    * git stash
    * git stash list (Get all stash(s))
    * git stash pop (Reapply stash and remove)
    * git stash apply (Reapply stash and keep copy)
    * git stash pop stash@{0} (Reapply specific stash)
    * git stash show (Find summary of stash)
    * git stash show -p (Find full diff)
    * git stash drop stash@{0} (Delete specific stash)
    * Git stash clear (Delete all stash(s))

* New
* New
* New