Re: [sympy] Help with Git and GitHub

2022-02-26 Thread Kuldeep Borkar
Thank you so much finally it worked : ) I used *git remote set-url origin* to set up SSH for the origin of repository. On Friday, 25 February 2022 at 19:41:45 UTC+5:30 Qijia Liu wrote: > GitHub has restricted accessing repos using HTTPS. You have to set up SSH > for your account, and modify

Re: [sympy] Help with Git and GitHub

2022-02-25 Thread Qijia Liu
GitHub has restricted accessing repos using HTTPS. You have to set up SSH for your account, and modify .git/config under your repo to change https://github.com/KuldeepBorkar/sympy.git to g...@github.com:KuldeepBorkar/sympy Qijia Liu -- You received this message because you are subscribed to

Re: [sympy] Help with Git and GitHub

2022-02-25 Thread Kuldeep Borkar
Thank you so much for the response, After understanding things for a while, I tried to follow the steps and came across a problem: - After deleting the commits with git reset --hard HEAD~1000 command then I used - git rebase upstream/master #till here it was all okay and I thought I

Re: [sympy] Help with Git and GitHub

2022-02-22 Thread Oscar Benjamin
On Tue, 22 Feb 2022 at 07:58, Kuldeep Borkar wrote: > > Hi SymPy Community, > > Few days ago I ran into a problem regarding Git and GitHub; > > Problem: Whenever I try to make a PR by creating a new branch from master > branch, the past commits showed up in the commit history (which I think is

[sympy] Help with Git and GitHub

2022-02-21 Thread Kuldeep Borkar
Hi SymPy Community, Few days ago I ran into a problem regarding Git and GitHub; *Problem*: Whenever I try to make a PR by creating a new branch from master branch, the past commits showed up in the commit history (which I think is the commits made from the master branch) . *Description*: