This repository is empty.

Get started by pushing an existing repository or creating a new one.

Note

To push changes to this repository, you'll need a Personal Access Token (PAT).

Create one in Settings > Personal Access Tokens

Create a new repository on the command line
echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://gitflare.mdhruvil.com/mdhruvil/test.git
git push -u origin main
Push an existing repository from the command line
git remote add origin https://gitflare.mdhruvil.com/mdhruvil/test.git
git branch -M main
git push -u origin main