Join our mailing list Subscribe Us
git

Guide to install GIT

Guide to install GIT: Basic guide to installing Git on various operating systems: Windows Download the Git Installer : Go to the Git for Windows pag…

How to see commits made by a specific user in GitHub Desktop

How to see commits made by a specific user in GitHub Desktop:  To check the commits made by a specific user in GitHub Desktop, follow these steps: Op…

Beginners guide for Git

Basic Git Commands and Concepts Installation : Windows : Download from git-scm.com and follow the installation steps. Mac : Use Homebrew - brew in…

git not working after mac upgrade

The problem is that Xcode Command-line Tools needs to be updated due to OS update. Go back to your terminal and enter: sudo xcode-select --install …

git commands i use

get particular file  git restore -s somebranch -- file.txt git push git push -u origin mybranch git push -u origin my_branch:remote_branch Want to me…