Recent changes

Jump to navigation Jump to search

Track the most recent changes to the wiki on this page.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 18:04, 17 June 2026
   
 
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

17 June 2026

N    05:35  Git/Branch diffhist +1,471 Kenneth talk contribs (Created page with "== Create new branch from last 10 commits == https://stackoverflow.com/questions/50992188/how-to-push-a-shallow-clone-to-a-new-repo <pre> # First, shallow-clone the old repo to the depth we want to keep git clone --depth=50 https://...@bitbucket.org/....git # Go into the directory of the clone cd clonedrepo # Once in the clone's repo directory, remove the old origin git remote remove origin # Store the hash of the oldest commit (ie. in this case, the 50th) in a var...")
N    05:32  Git/Signing Unsigned‎‎ 2 changes history +1,856 [Kenneth‎ (2×)]
     
05:32 (cur | prev) +16 Kenneth talk contribs (→‎Create new branch from last 10 commits)
N    
05:32 (cur | prev) +1,840 Kenneth talk contribs (Created page with "== Sign Current Commit == git commit --amend --no-edit -S == Rebase everything == Rebase everything until 'development' (or any hash) <ref>https://superuser.com/questions/397149/can-you-gpg-sign-old-commits</ref> git rebase --exec 'git commit --amend --no-edit -n -S' -i development Resign everything from root: git rebase --exec 'git commit --amend --no-edit -n -S' -i --root == Create new branch from last 10 commits == https://stackoverflow.com/questions/5099218...")