Azure DevOps wiki .attachments folder - azure-devops

is there a way to browse ".attachments" folder from the Azure DevOps wiki page?
I insert images, later want to check folder content but not find a way to do it.

just fin the way to browse this folder.
The wiki create a repository not visible in the repos list. you can browse it with this url:
https://dev.azure.com/MyOrganisation/MyProject/_git/MyProject.wiki

As of until today, one solution that worked for me is to clone the wiki repo to you local pc, let say Desktop and then, if you ever uploaded a file or image, you should have the .attachments folder, located in "your-cloned-repo/.attachments". Then you can delete or edit the file and push via git.

Related

How can I add a repository to github with terminal?

We have to create repository and upload the data from one application to github , with out storing any data in application system ... It is possible
How is the data currently stored? You could .gitignore the files you don't wish to push if saved within your directory, and follow these directions to store your code in the repo from the GitHub command line.
https://docs.github.com/en/github/importing-your-projects-to-github/importing-source-code-to-github/adding-an-existing-project-to-github-using-the-command-line
You could alternatively create the repo in GitHub and link it to your local repo:
https://docs.github.com/en/github/importing-your-projects-to-github/importing-source-code-to-github/importing-a-git-repository-using-the-command-line

How to transfer Github Gist to Repository?

I am new to Github. I recently have created a gist https://gist.github.com/8d11e24576c94b2c07a9a48288082588.git and want to transfer it to my repository at https://github.com/Muhammad-Ammar-Masood/Log-In-Page.git.
The simpler approach would be to clone your repository, and copy in it your gist, as a new file.
From there, add, commit and push.
Note that you can, from command-line, list your gists with gh girst list and view the content of a particular gist with gh gist view
gh gist view https://gist.github.com/8d11e24576c94b2c07a9a48288082588.git
(you need to install gh first)
You can also, since yesterday, do it online by going to your repository Muhammad-Ammar-Masood/Log-In-Page, and use GitHub Codespace by typing ..
You can add your gist in the online VSCode there.
You can, download Github Desktop on "https://desktop.github.com/", log in , create a new repository with GitHub Desktop, then choose a local directory on your PC for the newly created repository.
You can go to your Gist and choose to download as zip at the right end of the options
Screenshot of Gist Url and the download button highlighted
You can extract the zip file to your local directory assigned for the newly created repository.
On your GitHub Desktop : You can commit and push the changes of the repository to your GitHub.

why is there a GitHub folder on my computers boot drive?

I use GitHub. I thought the files were stored on the website. so why do I have a GitHub folder on my desktop (it takes up a lot of bootdrive space)? The GitHub folder has subfolders with the names of my repositories
C:\Users\cches\Documents\GitHub
That is choice made by the tool you are using when working with GitHub: you are using GitHub Desktop.
And GitHub Desktop chooses to store its local cloned repos in %USERPROFILE%/Documents/GitHub (as shown in issue 1663)
You should be able to delete those stored repos, clone only the ones you need, and File | Add existing repository in Desktop, as in issue 2851.

GitHub GUI move folder from one repo to another

I have multiple repositories under my account, and I placed a folder into the incorrect repo.
Is there a way use the GitHub web interface to move that folder from one repo to another?
From GitHub GUI alone, I don't think so.
You can delete files from the web GUI, but you still need to push your folder content from a local cloned repo (the right one this time)
Note: even if GitHub GUI referred to GitHub Desktop, you would still need to push.

How to upload a file into a repo?

I have a free version github account where I created a repo and I need to add a 670KB text file (it has test data) into this repo. I use IE browser and Windows XP OS, and haven't downloaded or installed any gihub software or app into my local system.
How do you directly upload the file into the repo without creating a file and then copying the content?
Github is supposed to be used wit git, a version control system. You need to use git in order to download/upload/update files inside a github repo.
You can also create a file directly inside Github by clicking on the little button on the right of your repo's name:
And then you can modify it inside Github by clicking on it.