#gitlab
Read more stories on Hashnode
Articles with this tag
Undoing and Changing Commits. · Undoing Commits: To undo commits in Git, you have several options depending on your specific needs and the state of your...
Learn Git Stash · Git Stash: git stash is a command in Git that allows you to temporarily shelve changes you've made to your working directory, so you...
Understanding .gitignore file · Gitignore: The .gitignore file is a text file used by Git to specify intentionally untracked files that Git should...
Learn how to resolve merge conflicts. · Resolving Merge Conflicts: Merge conflicts occur in Git when you attempt to merge branches, and Git is unable to...
Rebase in Git. · Rebase: Git rebase is a command used to reapply commits on top of another base branch. It's essentially a way to move or integrate a...
What are merge requests. How to use merge request. · Merge Requests: A merge request also known as a pull request in some platforms is a request made by...