Hi, I'm a Bitbucket noob and having a hard time getting started.
I'm trying to clean up the Bitbucket repository and my local git folder master and branch organisation.
My local computer's git folder has some folders deleted via Terminal $ rm -r folderName > $ git push.
Bitbucket repository still shows the folderName. How do I remove this?
I think part of the mess started with my local machine git cloning to the git folder which was in branch status and not master status?
Ok, I figured out how to do it.
It seems you can't delete a remote file from a local command.
I went to the remote repository's website > Source > select branch > select folder > select file to be deleted > Edit > Delete > Commit.
As far as I can tell, this doesn't work for folders - only files.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This post worked for me.
The question should be: "How to delete folders/files with git?"
Not in bitbucket.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
He is a beginner. You must to be comprehensive.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can delete a branch referring to http://stackoverflow.com/questions/15150671/delete-branches-in-bitbucket
As for managing branches, I think the following might help
Not sure if you are new to Git, but I learn to understand Git at https://www.atlassian.com/git/:)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
so my suggestions are:
- move the file/folder you want to delete in your computer to another folder from your master folder...
then type on your terminal..
- git commit ( this commits the changes like when you move the folder to another
destination, this will commit only the files or folders present in that master folder)
then ..
- git push ( this will push the final layout of your folder)
now you can refresh your repo and see updated commit
Result: you see only files and folders you have in your master folder.
Thank you
Bhavya Sharma
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have an issue
I can delete a file parsable by Bitbucket (text, image, ...)
But for the others files (exe, ...) I can not delete it. When I click on the file, my browser download it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same problem again about deleting a file off the Bitbucket online remote repository.
I made a local file with the wrong name and pushed it up to the Bitbucket online remote repository.
I have now renamed the wrong named file on my local computer and deleted the wrongly named file.
I then typed $ git add fileWithWrongName.* fileWithCorrectName.* > Enter > $ git commit -m "Deleting wrongly named file and adding new correct named file on Bitbucket online remote repository." > Enter > $ git push > Enter > $ <Bitbucket password> > Enter.
The new file fileWithCorrectName.* was pushed up successfully to the Bitbucket online remote repository, however the fileWithWrongName.* didn't delete/remove from the Bitbucket online remote repository?
Any suggestions please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the reply. The links are easy to read which is a nice improvement for IT documentation.
My issue isn't about deleting a branch however.
The issue is folder/s in the remote Master and a folder in the remote branch that won't delete.
I have deleted files locally and remotely in Master and Branch, but not the folders.
I think I'm misunderstanding how the Master and Branch works.
I have pulled the remote Master and then created a Branch locally. I then pushed the local Master and local Branch to the remote repository.
I'm confused on where the local folder is for my local Master and local Branch?
I have a git working folder/directory, but in there the folders 'magically' appear and disappear when I change to local Master or local Branch via Terminal?
I would like to always have access to seeing my local folders' Master or Branch, regardless of whether I'm in Terminal local Master or local Branch.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We can delete the files/folders present in BitBucket repository by deleting the physical files/folders from your working directory and push it to BitBucket through SourceTree Git desktop client. Once you delete the files/folders the same will be marked 'Missing' in SourceTree and there by it will delete them from the BitBucket as soon as you Push them...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, maybe the remote repository was slow or I made a mistake.
It seems the folders are now deleted so I can work with a cleanly organised local and remote repository now. See how it goes over the next few weeks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have now deleted all files within the master folder named webpage.
However one remaining hidden file won't delete, named: .DS_Store
I think this is stopping the folder webpage being deleted?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @eiger3970 the .DS_Store file is a hidden file used by OSX to store user preferences and other "meta" info. Wikipedia lays it out better than I can. You don't want the file in your code base. Remove + commit in your terminal:
rm -f .DS_Store && git commit -am "file clean up"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked the best for me yet I did it in separate lines, for example(example not literal to the scenario listed above but should help):
within this gitignore add what you want to ignore like so -> node_modules
then save make sure you mash cmd + s because mac isn't sensitive to be fair.
$ touch .gitignore
After creating the .gitignore and saving, remove that folder(or file). Like below:
$ cd repository_root
$ rm -rf node_modules
Then it will spit out red sentences don't worry this is just a notification about a change within the repository locally, but the lines
should start with deleted to notify the change in the repository.
Now let's wrap this up by adding. committing and then pushing all of our changes.
$ git add .
$ git commit -m "File cleanup, removal of node_modules and then adding of .gitignore"
$ git push
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.