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

Data visualize with matplotlib(solid line)

Nominal GDP      from matplotlib import pyplot as plt      years = [1950, 1960, 1970, 1980, 1990, 2000, 2010]      gdp = [300.2, 543.3, 1075.9, 2862.5, 5979.6, 10289.7, 14958.3]      plt.title('GDP')      plt.ylabel('Billios of $')      plt.plot(years,gdp,color='red',marker='o',linestyle='solid')      plt.show() * plt.plot(x,y,color,marker per year,linestyle) there are several line style '-', '--', '-.', ':', 'None', ' ', '', 'solid', 'dashed', 'dashdot', 'dotted' fig-