What is the need of any VCS? In culture of coding, there are multiple problems which faced by coders.Those problems are: Backup of project History & Tracking of the project (Like Google Docs) Collaboration with the team. So for these problem, co...
What is Git? Git is an open-source distributed version control system that helps developers track changes in their code over time. It allows: Version tracking: Save and access previous versions of your code. Collaboration: Work seamlessly with othe...
🐧 Linux Cheat Sheet 🐧 CommandDescriptionExample lsList files and directories.ls -l cd [directory]Change current directory.cd /home/user/ mkdir [directory]Create a new directory.mkdir project touch [file]Create an empty file.touch file.txt...
Hello ! Hope your'e doing good this blog includes pretty short and precise explanation of the commands used in Git/GitHub s in day to day scenario. Set Global Username & email for Git git config --global user.name "<your.name>" git config --global us...
File and Directory Operation ls: List directory contentscd: Change directorypwd: Print working directorymkdir: Make a directorycp: Copy files or directoriesmv: Move or rename files or directoriesrm: Remove files or directories File Manipulation cat: ...
In this Git & Github line cheat sheet, you will learn: Git configuration Starting A Project Day-To-Day Work Git branching model Review your work Tagging known commits Reverting changes Synchronizing repositories Git configuration Configure ...
Install GitHub Desktop desktop.github.com Git for All Platforms git-scm.com Configuring Git $ git config --global user.name "[name]"Sets the name you want to be attached to your commit transactions.$ git config --global user.email "[email address]"S...
Overview This cheat sheet will help any new user to understand the basic git commands.You'll discover what git is and how to utilise it What is GIT? GIT is a distributed version control system that is free and open-source. It supports non-linear dev...