Skip to main content

GitHub exact pull request method

 


1.Fork this project.

2.clone those project on your local machine

```

git clone <link>

```

3.create a new branch 

```

git branch [branch_name]

```

4.switch the created branch

```

git checkout [branch name]

```

5.check

```

git status

```

6.change whatever like

7.pull 

```

git branch --set-upstream-to=origin/master [branch_name]

```

8.

```

git add .

```

9.Commit

```

git commit -am "update cp and rm command"

```

10.finally push

```

git push origin [brach_name]

```

11.see difference on repo and make some comment and create pull request.

Comments

Popular posts from this blog

Connect POSTgreSQL with Django

  First install all necessary step  $ sudo apt-get install python-pip python-dev libpq-dev postgresql postgresql-contrib Second $ sudo su - postgres $ psql Create User name with password  $ CREATE USER user_name WITH PASSWORD ' password ';   Create New Database $ CREATE DATABASE database_name WITH OWNER user_name ; Give permission  $ GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO user_name ; Update settings.py  DATABASES = { ' default ' : { ' ENGINE ' : ' django.db.backends.postgresql_psycopg2 ' , ' NAME ' : 'database_name ' , ' USER ' : ' user_name ' , ' PASSWORD ' : ' password' , ' HOST ' : ' localhost ' , ' PORT ' : ' 5432 ' , } }  Then, python3 manage.py migrate and finally create super user python3 man age.py createsuperuser