Build a Backend REST API with Python & Django

Skills

Python

Django

djangorestframework

Aws

Git

Use the below Git commands in the Windows Command Prompt or macOS Terminal.

Configure default email and name

git config --global user.email "[email protected]"
git config --global user.name "Your Name"

Initialise a new Git repository

git init

Commit changes to Git

git add .
git commit -am "Commit message"

Set Git remote

<div class="snippet-clipboard-content position-relative overflow-auto" data-snippet-clipboard-copy-content="git remote add origin
git push -u origin master
“>

git remote add origin 
   
    
git push -u origin master