VesionControl Intermediate
VesionControl Intermediate
Viewing Branches
git branch
Deleting a Branch
git branch -d feature-branch
advertisement
Using remotes in Git Tutorial
Using remotes in Git refers to the ability to interact with remote repositories, which are hosted on
servers or cloud platforms. This allows developers to collaborate on projects, share their code, and
integrate changes made by others. Remotes are simply pointers to repositories in a different location,
and common operations include adding a remote, fetching changes from a remote, pushing local
commits to remote branches, and pulling updates from remotes to synchronize local work with the
remote repository.
Copy
Adding a remote repository
git remote add origin https://github.com/user/repo.git
Abort a cherry-pick
git cherry-pick --abort
Drop a Stash
git stash drop stash@{0}
This commit fixes a typo in the installation instructions section of the README file. This
typo may have caused confusion for new users.
Implemented the user login functionality as part of the user story #345 to enhance user
authentication and security.