Lucas Bürgy's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
15 results tagged git  ✕
Git reset current rebase - Stack Overflow https://stackoverflow.com/questions/35172734/git-reset-current-rebase/53141807#53141807
Fri Sep 6 11:49:49 2024
QRCode

First, clear the mess:

git reset --hard HEAD

Then, cherry-pick the commit you are currently rebasing:

git cherry-pick -n `git rev-parse REBASE_HEAD`

That's it. As usual, you will be able to continue the rebase after fixing conflicts

-- Pierre

git rebase
How to Rename a Local and Remote Git Branch – A Quick Guide https://www.hostinger.com/tutorials/how-to-rename-a-git-branch/
Thu Jan 20 11:29:20 2022
QRCode
git
Commit specific lines of a file to git - Stack Overflow https://stackoverflow.com/questions/4309156/commit-specific-lines-of-a-file-to-git/4309173#4309173
Thu Jan 20 11:07:20 2022
QRCode
git add -p
git
Why does git stash pop say that it could not restore untracked files from stash entry? - Stack Overflow https://stackoverflow.com/questions/51275777/why-does-git-stash-pop-say-that-it-could-not-restore-untracked-files-from-stash/51275841#51275841
Thu Dec 2 15:49:42 2021
QRCode

when you have this message when doing a git stash apply :

error: could not restore untracked files from stash

do this (warning will override any unsaved local changes) :

git checkout stash -- .
git
Useful Forks https://useful-forks.github.io/
Sun Aug 8 15:04:50 2021
QRCode

Find the most useful forks of git repositories

git github
Oh Shit, Git!?! https://ohshitgit.com/
Wed May 20 09:09:06 2020
QRCode
git
version control - How do I discard unstaged changes in Git? - Stack Overflow https://stackoverflow.com/questions/52704/how-do-i-discard-unstaged-changes-in-git#52713
Thu Apr 30 14:02:03 2020
QRCode

For all unstaged files use:

git checkout -- .

For a specific file use:

git checkout path/to/file/to/revert

Make sure to include the period at the end.

git
Syncing a fork - GitHub Help https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/syncing-a-fork
Thu Apr 30 13:00:09 2020
QRCode

Peut-être ça plutôt https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/merging-an-upstream-repository-into-your-fork

Il faut faire ça avant https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork

git
version control - How do I undo the most recent local commits in Git? - Stack Overflow https://stackoverflow.com/questions/927358/how-do-i-undo-the-most-recent-local-commits-in-git/927386#927386
Mon Mar 16 13:09:43 2020
QRCode
git
Onedev – Une alternative légère à Gitlab – Korben https://korben.info/onedev-une-alternative-legere-a-gitlab.html
Sat Mar 14 14:22:45 2020
QRCode
git
OnFetch – Pour afficher les infos d’un projet Git depuis votre terminal – Korben https://korben.info/onfetch-pour-afficher-les-infos-dun-projet-git-depuis-votre-terminal.html
Mon Feb 10 15:39:04 2020
QRCode
git
https://github.com/RSS-Bridge/rss-bridge/releases.atom https://github.com/RSS-Bridge/rss-bridge/releases.atom
Tue Jan 14 22:27:57 2020
QRCode

For github, maybe all the gits, I don't know, there is an rss feed for the releases

https://github.com/user/repo/releases.atom

git github
How to undo (almost) anything with Git - The GitHub Blog https://github.blog/2015-06-08-how-to-undo-almost-anything-with-git/
Wed Jan 8 08:47:54 2020
QRCode
git
How can I undo the last commit? https://www.git-tower.com/learn/git/faq/undo-last-commit
Wed Jan 8 08:47:37 2020
QRCode
git reset --soft HEAD~1
git
Git stash /shaare/u1488Q
Mon Dec 2 11:00:42 2019
QRCode

Pour sauvegarder les modifs locales:

git stash

Ensuite, on peut faire un git pull par exemple.
Puis, on restaure les modifs locales:

git stash pop
git astuces
1244 links, including 4 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn