handy_git_commands

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
handy_git_commands [2023/11/15 17:50] mguptonhandy_git_commands [2024/12/04 14:57] (current) mgupton
Line 13: Line 13:
 === concise one-line log === === concise one-line log ===
 <code bash> <code bash>
-git log --pretty=format:"%h%x09%an%x09%ad%x09%s"+git log --date=iso --pretty=format:"%h%x09%an%x09%ad%x09%s"
 </code> </code>
  
 +====== Orphaned/Unrelated Branches ======
 +  * Create an orphaned branch
 +  * Delete all the files in the new branch to start fresh
 +  * I think you have to at least do a commit to the branch before it can be pushed to a remote
 +<code>
 +git checkout --orphan <orphaned branch name to create>
 +git rm -rf .
 +git commit --allow-empty -m "Initial commit of an unrelated (orphan) branch"
 +git push -u origin <branch name>
 +</code>
  
  • handy_git_commands.1700070640.txt.gz
  • Last modified: 2023/11/15 17:50
  • by mgupton