Getting Started with the Repo
Clone the repo, create a new local branch immediately, push to a new remote branch, and create a pull request.
git clone https://oauth2:{TOKEN}@gitlab.umich.edu/mig-quant-group/algorithms/sentiment/2021fall
'clone' means clone all the branches and histories of a repo
TOKEN is a personal access token you need to create in GitLab
git checkout -b {BRANCHNAME}
You will start on the 'main' branch, which is important, so you should switch to a separate branch to make your edits. This creates a local branch (on your editor) that won't appear immediately on the GitLab
Probably make your branch name the name of your social media platform
git push -u origin {BRANCHNAME}
GitLab is the remote, central repo. You need to push your local changes to the remote so they show up in GitLab and other people can see/get your changes
Go to GitLab and create a Pull Request from your branch to main
We want to make sure our main branch is stellar, so creating a pull request makes me review your changes and decide whether to merge them into main
git pull
Do this intermittently. This gets other people's changes to the repo. You only work on your own branch, so you shouldn't have conflicts
Last updated
Was this helpful?