VSCode with Bitbucket and JIRA - visual-studio-code

I’m having issues linking my JIRA and Bitbucket accounts to my VSCode. I’ve downloaded the Atlassian extension and followed the steps provided here:
https://support.atlassian.com/bitbucket-cloud/docs/get-started-with-vs-code/
However, my Atlassian settings page in VSCode is blank.
If I try and click the below links in the side panel:
‘Authenticate with Bitbucket to view pull requests’
Or
‘Please login to Jira’
The links don’t go anywhere.
Any help on this issue would be greatly appreciated.
Visual code version 1.67.2
Thanks,
Simon

Related

Enabling .dev functionality on github enterprise

On normal GitHub there is a possibility to go to a repo in browser and either press . or change the domain to .dev and it will open code editor in the browser. May I know, how can I enable this .dev functionality on the GitHub enterprise.
Looking forward to the suggestion and advice.
Thanks in advance!

Github is not working in Visual Studio Code

I have tried to install the GitHub pull and request extensions in the Visual Studio Code.I installed it. But when I searched "Github" in the Visual Studio there is nothing showing in the visual studio code.
Your question is not clear, but I will try to answer it based on my understanding.
Try with Ctrl+Shift+P and search git, you should see all git commands.
From the official website:
To get started with the GitHub in VS Code, you'll need to install Git, create a GitHub account and install the GitHub Pull Requests and Issues extension.
Once you've installed the GitHub Pull Requests and Issues extension, you'll need to sign in.
After this, you can search for and clone a repository from GitHub using the Git: Clone command in the Command Palette (Ctrl+Shift+P) or by using the Clone Repository button in the Source Control view (available when you have no folder open).

GitHub repo link not showing in marketplace

I published 2 extensions to the VS marketplace, in the manifest file and on the marketplace I added the source code github link. When I go to the marketplace, there is no link to the repository or showing open issues/pull requests.
Is there anything I forget?
Assuming the extensions are for vs. It's fairly easy to publish it to marketplace as we all know.
Please remove the github links in manifest file,and check the github url again:
I think maybe there has something wrong with your link here. I've done several tests and find the Project Details Section would disappear only when the github link was not valid for a github repo.(Even the github repo is private, the link to repo will display.)

Is it possible to edit file and commit github/bitbucket from browser

I want to use editor in browser and save in github without server. Just like text editor in github/bitbucket could new file and save it
I want to know are there any REST api of this 2 services to easily commit file like that
Or a git library in js that could work without the need to pull all files in to our machine
edit:
After 2018 both service already expose their API. This question is outdated
In case you're looking for an online code editor that you can connect to github or bitbucket then you could take a look at these:
Codeanywhere
Cloud9
If you're looking to develop such an editor yourself, you could just start from github or bitbucket's REST API documentation:
Github
Bitbucket
And just choose the javascript REST library of your preference to interact with those APIs.
For Github: to create/update/remove files you can use the Contents resources.
For example, this section explains how to update a file.
Bitbucket user here, you can EDIT/COMMIT your files in browser.
https://gyazo.com/ff3cb58bcc1cceda0306037989f32ab1
Bitbucket has an online editor where you can change the file and commit right away. Check it out here.
See the official response here:
tldr:
They're working on expanding their API and have responded to an issue opened in 2013
EDIT: An endpoint to do this is now available!
Update August 2021: just type . (dot)
🤫 New shortcut: Press . on any GitHub repo.
That will launch GitHub Codespace on your current repository.
You can install on your local computer benweet/stackedit, a markdown javascript editor.
As mentioned in the README,
Publish your Markdown document on GitHub
(See more at Publication)
You can use Power Editor for Bitbucket for editing and commiting code from browser in bitbucket.

How do i publish my Visual Studio Project to Github

I have made a project in Visual Studio that I would like to share with people on Github.
Searching Google and here, i can not seem to find a simple guide for how I get this project uploaded to to Github.
I have Git Extensions installed, i have some application from Github installed as well. I simply cant figure out what i need to do to share my project on Github. Any help appreciated.
Use this easy tool:
https://code.google.com/p/gitextensions/
No Cygwin needed
I've just found this Extension to VS15:
I have always found this guide
to be quite helpful.
I am using Cygwin with the Git package installed. Once that is done you need to
set up SSH keys.
This is essentially a key that is stored in a file on your computer. You enter
the same key into the "SSH Keys" page on GitHub, and as long as that file with
the key is found you can push and pull from GitHub.