python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Get full history of changes
For some legal reasons I need to show all of the contributions that I've made to a projet.
Is there a way, using only the local git to see all of the diff of all files in between each commits? Or othe...
Mel
Votes: 0
Answers: 1
List all annotated tags, with annotation, sorted by commit date
It seems easy to list all tags with annotations, with e.g.:
git tag -n99
or
git for-each-ref --format '%(refname:short) %(contents)' refs/tags
And it's also possible to use git log to list tags by c...
naught101
Votes: 0
Answers: 1
Remove someone else's commits off my branch
I needed to use the file structure that someone had created locally and not yet published so I branched off of their branch using the command git checkout -b new_branch_name old_branch_name. Now their...
Cameron
Votes: 0
Answers: 1
Automatically add flags to command
I am a frequent user of git log -G[string], and I almost always find myself using --all and --no-textconv with it.
Can I somehow tell git to use those two options by default when calling git log -G[st...
Charles
Votes: 0
Answers: 2