Skip to content

amlang/awesome-git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

awesome-git

To create a new empty master branch

$> git checkout --orphan master
$> git rm -rf *

Change commit date of a specific commit

$> git filter-branch --env-filter \
   "if test \$GIT_COMMIT = 'e6dbcffca68e4b51887ef660e2389052193ba4f4'
   then
      export GIT_AUTHOR_DATE='Sat, 14 Dec 2013 12:40:00 +0000'
      export GIT_COMMITTER_DATE='Sat, 14 Dec 2013 12:40:00 +0000'
   fi"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published