"git-upload-pack not permitted" error in Oracle SQL developer, but I can clone from GitHub Desktop - oracle-sqldeveloper

I did clone successfully in Oracle SQL Developer couple months ago. Now I tried to clone again, I got the " git-upload-pack not permitted" error in SQL Developer. But I can still clone in GitHub Desktop. What could cause the clone failed only in SQL Develoer?

A less convenient solution is to open the folder where your .sql file is stored and use GIT Bash to manually push to the remote repository. It works for me

Related

Having trouble copying a github repository onto my unix machine

I am trying to copy a github repository into my "documents" folder on my macbook pro but have continually received the error message below. I am brand new to github and am using it for the odin project. Any tips or tricks to work through this obstacle? Thank you.
Collins-MacBook-Pro:~ collinremmers$ cd documents
Cj-MacBook-Pro:documents cj01$ git clone git#github.com:cjremm01/git_test.git
Cloning into 'git_test'...
/Users/cj01/.ssh/config: line 3: Bad configuration option: identifyfile
/Users/cj01/.ssh/config: terminating, 1 bad configuration options
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Try to clone it with the URL and not via SSH
git clone https://github.com/cjremm01/git_test

Running a .sql file in VS Code using mssql extension - not executing when file saved to git versioned network folder

I'm using VS Code with the mssql extension - both installed this week so up-to-date.
I can connect to our sql-server.
I then right-click the database name and select 'New Query' and do the following:
SELECT 1
I then save the file onto a network drive, re-run the script and all is still good.
I then save the file into a git versioned folder and this now happens:
It does not return a result - the query cannot be cancelled from within Code and I need to close the application. Moreover any .sql files I have saved in this git versioned directory are not usable from within Code.
Anyone any ideas what is happening and how to solve it?
Edit the git directory is cloned and synced from an Azure DevOps Repo
Unsure why the following works and there are likely other solutions.
I deleted my local Repo.
Then in Azure DevOps I cloned the repo using the "Clone to VS" option.
The SQL scripts now execute fine.

Unable To Clone Azure DevOps Repo From VSOnline

I'm attempting to clone a repo into my workspace on Visual Studio Code Online (Chrome browser) using the Azure Repos extension (https://online.visualstudio.com/environments):
When I attempt to execute the Team: Signin command, I get the error:
When I attempt to clone the repo from the terminal I get:
vsonline:~/workspace$ git clone https://dev.azure.com/MyOrganization/MyProject/_git/MyApp
Cloning into 'MyAppApp'...
Username for 'https://dev.azure.com': myemail#mycompany.com
Password for 'https://myemail#mycompany.com#dev.azure.com':
fatal: Authentication failed for 'https://dev.azure.com/MyOrganization/MyProject/_git/MyApp'
I have this setup with no problem in VS Code on my desktop, what am I doing wrong?
This error is caused by authentication when clone a repo from Azure DevOps Repos, it also led to your Azure Repos extension could not find a repo.
Please check Authentication overview and make sure the Username and Password are correct and workable.
I have been working on this for several days and I finally managed to crack it. 1. select clone in vscode 2. it will ask you to open on new vscode window so click yes 3. head over to devOps and click on generate git credentials 4. copy the long password and paste it in upper password field prompt in vscode
this worked for me so well, happy coding?

Unable to integrate Github with Pycharm

I have created a repository on Github. I am using Windows 7 64 bit and Pycharm Community edition. I want to integrate the Github repository with pycharm but I am getting the error
Couldn't get the list of GitHub repositories
Connect to api.github.com:443 [api.github.com/192.30.252.127] failed: connect timed out
Although I am able to clone he same repository from command prompt using git clone command.
I had the same issue.
Configure your proxy if using one:
File->Settings->System Settings->HTTP Proxy
Another thing to try is to clone the project locally then add as new project in Pycharm. Afterwards I was able to do all git operations under VCS->git including add/commit/push for my project.
try to check whether you have given the path to Git executable correctly by testing it using test button next to it...(file>settings>version control>Git>path to Git Executable)
make sure you have given the git client path correctly..
C:\Program Files\Git\cmd\git.exe

github - attempting to push/pull/update (not sure of the terminology) updated code from github to remote server via terminal/ssh mac os

So I have my local computer - where I've updated my (html/js/css) code, github (where I've pushed the updated code already by doing a git add + git commit + git push origin master) and then the server of the actual website which the code is for.
I've connected to the server via the command line terminal. I've already previously cloned the code to the server (by running the command git clone [REPO URL]) while logged in to the server via SSH, so the (un-updated-)files are there.
But now that I've updated the code, and pushed that update to github, how do I now update or push the repo/code/updated-github-code to the server???
I'm currently looking at the terminal with
[~]#
^ showing. I tried to git clone [REPO URL] again, but then I get the msg:
fatal: destination path 'name of my file' already exists and is not an empty directory
Am I missing or overlooking a step? Well obviously I am but I could use some help please. Like I said I'm trying to update the code to the server so the actual website will reflect the changes I made to the code and so everything is in sync (local code, code pushed to github and hopefully/eventually the code on the server/website).
I am just learning this obviously, so go easy on me (I've spent almost the entire day learning to connect to the server via SSH in terminal)...
Also, feel free to correct my terminology...
Pull from github while ssh'd into the server using the link from the github repo "copy to clipboard" button on the web interface. If that doesn't work you could try wiping the repos folder on the server and cloning from scratch. But use that option with caution if downtime is unacceptable for this particular web app.