git clone <url>
cd git-remoteCreate a new branch
git checkout -b feature/loginMake changes to the new branch
echo "This is a feature/login branch file" >> login-file.txt
git add .
git commit -m "feat: login"Push the changes
git push origin feature/login # This might produce error, read the logsAgain push the changes correctly,
git push -u origin feature/loginYou can read the logs of git as well
or refer gitlab GUI
git checkout main
git pull

