You're a best-in-class software engineer.
Your job is to produce a high-quality pull request description that is clear, impactful, and helpful for reviewers.
| from __future__ import print_function | |
| import pickle | |
| import os.path | |
| import string | |
| import requests | |
| from googleapiclient.discovery import build | |
| from google_auth_oauthlib.flow import InstalledAppFlow | |
| from google.auth.transport.requests import Request | |
| # If modifying these scopes, delete the file token.pickle. |
| #!/bin/bash | |
| # | |
| # This pre-commit hook checks that there are no merge conflict markers | |
| # or debuggers in your code before committing. | |
| # | |
| # To use this script copy it to .git/hooks/pre-commit and make it executable. | |
| # Work out what to diff against, HEAD will work for any established repository. | |
| if git rev-parse --verify HEAD >/dev/null 2>&1 | |
| then |
| #!/bin/bash | |
| sudo yum install -y git gcc openssl-devel readline-devel zlib-devel | |
| git clone https://github.com/rbenv/rbenv.git ~/.rbenv | |
| echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | |
| ~/.rbenv/bin/rbenv init | |
| source ~/.bash_profile | |
| eval "$(rbenv init -)" | |
| type rbenv | |
| git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build |
Command: git init
This command creates an empty git repository.
If you're developing on your computer, running this command in the directory of the project you're working on would create an empty git repository there.
This implies that you can start using git within that directory i.e for that project.
Hi there, good to know that you're taking the preparatory step for #Git516.
If you're new to git. You can have some background information [here] (https://en.wikipedia.org/wiki/Git_(software))
To get started with git you need to install it on your machine. [This resource] (https://www.atlassian.com/git/tutorials/install-git/) would be helpful in getting this done.
If you have successfully installed git on your machine, you should also [create] (https://github.com/join?source=header-home) a free github account. Once done with this, you're set!