Tag: git
MySQLclient Installation Errors in Python while running pip install mysqlclient
The Problem: mysql_config not found When you try to install mysqlclient using pip, the installation…
Changing git commit AUTHOR and COMMITTER
It’s as simple as: git -c user.name="Author Name" -c user.email=author@email.com commit --amend --reset-author All done.
Change Git Commit Date and Git Commit Author Date
To see the author and commit date, do the following in terminal: git log --pretty=fuller…
Resolving Cherry-Pick Git Conflicts with Incoming Changes
It’s as easy as pie: git cherry-pick --strategy=recursive -X theirs {hash}