From charlesreid1

No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 2: Line 2:


Notes on my most common git operations: [[Git Operations]]
Notes on my most common git operations: [[Git Operations]]
Using Git to deploy static web content: [[Git Deployment]]


Syncing a fork: [[Git/Sync a Fork]]
Syncing a fork: [[Git/Sync a Fork]]
Line 7: Line 9:
Deleting a remote branch: [[Git/Delete Remote Branch]]
Deleting a remote branch: [[Git/Delete Remote Branch]]


Software carpentry steps:
Tags: [[Git/Tags]]
* why version control
* the philosophy behind git
* git config file
* creating a git repo - git init
* dot git folder


Question: why the two-stage process?
Submodules: [[Git/Submodules]]


Start with github
Notes on teaching git: [[Git/Software Carpentry]]
* creating repos on github
* collaborating on a repo with folks


Conflicts
* make 2 changes on side by side machines
* go thru the process - can't push because you have to pull, can't pull because you have conflicts.


[[Category:Git]]


Meld - command line tool


[[Category:Git]]
===quick ref===
 
the thing we always come here for:
 
<pre style="white-space: pre-wrap;">
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Ch4zm of Hellmouth'; GIT_AUTHOR_EMAIL='ch4zm.of.hellmouth@gmail.com'; GIT_COMMITTER_NAME='Ch4zm of Hellmouth'; GIT_COMMITTER_EMAIL='ch4zm.of.hellmouth@gmail.com';" HEAD;
</pre>

Latest revision as of 12:58, 19 August 2025

A curated list that will one day soon become git-awesome: Git Resources

Notes on my most common git operations: Git Operations

Using Git to deploy static web content: Git Deployment

Syncing a fork: Git/Sync a Fork

Deleting a remote branch: Git/Delete Remote Branch

Tags: Git/Tags

Submodules: Git/Submodules

Notes on teaching git: Git/Software Carpentry


quick ref

the thing we always come here for:

git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Ch4zm of Hellmouth'; GIT_AUTHOR_EMAIL='ch4zm.of.hellmouth@gmail.com'; GIT_COMMITTER_NAME='Ch4zm of Hellmouth'; GIT_COMMITTER_EMAIL='ch4zm.of.hellmouth@gmail.com';" HEAD;