All Questions
Tagged with git python-3.x
5 questions
9
votes
1
answer
721
views
git-user - Working on a shared local repository with multiple users made easier
I have recently been in a situation where multiple developers worked on a shared local git repository under the same Linux user¹. As one can imagine, it can easily become a bit annoying not to commit ...
2
votes
0
answers
367
views
application to get git commit and write data into csv file
I am writing a small application to get commits between two tags from different env (apple, banana) and write the result into a csv file.
For security, I have to replace some sensitive information ...
4
votes
1
answer
99
views
Daily Add/Del Git Log Analysis
I just finished writing this Python script to calculate daily additions and subtractions from my git log to use in making pretty graphs. This is a rewrite of something I wrote previously in Perl. I ...
10
votes
2
answers
657
views
Taking YouTube links out of a list of GitHub repo READMEs
I have a .csv file that contains student GitHub repository assignment submissions. I made a script to go to each repository and extract the YouTube video that they must have provided in their README ...
10
votes
1
answer
724
views
Python-based Git pre-commit hook to manage multiple users/Git identities
A couple of months ago I posted a bash script to manage multiple Git identities as a solution on Stack Overflow but soon found the hook isn't flexible enough.
Thus I decided to rewrite the hook in ...