© 2023 Hashnode
#git
Rebasing is the process of moving or combining a sequence of commits into a new base commit. Rebasing is most useful and easily visualized in the context of a feature branching workflow. From a conte…
LINUX COMMANDS File System Navigation cd: changes the current working directory to the user's home directory. cd ..: changes the current working directory to the previous directory. cd [directory]…
As a beginner, the term "Git" seemed unnecessarily complex and difficult to master. I was afraid that I would not understand and apply its commands. Surprisingly, despite my panic and objections. Git …
Git Stash: Git stash is a command that allows you to temporarily save changes you have made in your working directory, without committing them. This is useful when you need to switch to a different br…
Git It is a distributed version control system designed to manage and track changes to code and other files over time. It was created by Linus Torvalds in 2005 and has become one of the most widely us…
What is .gitignore? It basically contains the list of files or directories that should be ignored and not tracked by Git while pushing on a repository. Although there can be multiple .gitignore files in a single repository, It is a best p…
Git Stash: The git stash command takes your uncommitted changes (both staged and unstaged), saves them away for later use, and then reverts them from your working copy. For example: $ git status On b…
What is Git? Git is a version control system that allows you to track changes to files and coordinate work on those files among multiple people. It is commonly used for software development, but it ca…
Git Branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branches. You can merge a …
What is Git? Git allows developers to track changes to their code, collaborate with others on a project, and easily revert to previous versions of their code if necessary. It works by creating a repos…