Tagged Questions
The rename tag has no wiki summary.
116
votes
22answers
117k views
How do I quickly rename a mysql database (change schema name)?
Usually I just dump the database and reimport it with a new name. This is not an option for very big databases. Apparently RENAME {DATABASE | SCHEMA} db_name TO new_db_name; does bad things, exist ...
66
votes
7answers
23k views
git: rename remote branch
I have the branch master which tracks the remote branch origin/master.
I want to rename them to "master-old" both locally and remote. Is that possible? For other users who tracked origin/master (and ...
45
votes
4answers
8k views
Rename a tag in git?
Today I was looking through the logs for a project and realized that I fat fingered a tag name some time ago. Is there some way to rename the tag? Google hasn't turned up anything useful.
I realize I ...
34
votes
2answers
9k views
Is it possible to move/rename files in git and maintain their history?
I would like to rename/move a project subtree in git moving it from
'/project/xyz' to '/components/xyz'
If I use a plain 'git mv project components' then all the file history for the xyz project ...
24
votes
3answers
4k views
Easiest way to rename a model using Django/South?
I've been hunting for an answer to this on South's site, google, and SO, but couldn't find a simple way to do this.
I want to rename a Django model using South.
Say you have the following:
class ...
22
votes
6answers
4k views
Handling renames: svn vs. git vs. mercurial
How do each of these VCS handle renames?
I have found a lot of contradicting information stating that git tracks LOC (lines of code) instead of files, renames would therefore have no meaning for it.
21
votes
10answers
17k views
How to rename all folders and files to lowercase on Linux?
I have to rename a complete folder tree recursively so that no uppercase letter appears anywhere (it's C++ sourcecode, but that shouldn't matter). Bonus points for ignoring CVS and SVN control ...
18
votes
1answer
660 views
Mercurial: TortoiseHg's “guess rename” from the commandline?
Is there any hg functionality to mimic the "guess renames" command of TortoiseHG?
I really dig this one, however I am currently using MacOS and have Murky or the commandline interface available.
11
votes
6answers
3k views
Bash script to pad file names
What is the best way, using Bash, to rename files in the form:
(foo1, foo2, ..., foo1300, ..., fooN)
With zero-padded file names:
(foo00001, foo00002, ..., foo01300, ..., fooN)
9
votes
12answers
6k views
Xcode - renaming project causes problem
I'm currently working on an iphone application. I started working on this from a project template that I found on the internet. Now I want to rename this project. I've successfully renamed the actual ...
9
votes
4answers
9k views
Batch Renaming of Files in a Directory
Is there an easy way to rename a group of files already contained in a directory, using Python?
Example: I have a directory full of *.doc files and I want to rename them in a consistent way.
...
8
votes
3answers
561 views
Renaming TFS2010 Team Project
Is it possible to rename a TFS2010 team project?
The project in question is based on the CMMI 5.0 team project template, but it has been modified with several custom modifications (new WITs and link ...
8
votes
2answers
693 views
Renaming an app with Django and South
I am renaming an application to a more suitable name. In doing so, I want to ensure that South properly migrates the database (renames database tables and changes references in django_content_type or ...
8
votes
2answers
4k views
Git: Renaming a directory in a branch
I have a project using Git where I've branched off of master to rename a directory.
The rename in the branch works as expected. When I switch back to the master branch the directory has its original ...
8
votes
8answers
2k views
How to do a mass rename?
I need to rename files names like this
"transform.php?dappName=Test&transformer=YAML&v_id=XXXXX"
to just this
"XXXXX.txt"
How can I do it?
I understand that i need more than one "mv" ...
7
votes
2answers
845 views
7
votes
3answers
3k views
A sane way to rename a directory in subversion working copy
While somehow versed in VCS (regular svn, git and git-svn user) I can't seem to wrap my head around this peculiar SVN behavior.
Whenever I need to rename a directory in my SVN working copy from an ...
7
votes
2answers
595 views
Showing renames in hg status?
I know that Mercurial can track renames of files, but how do I get it to show me renames instead of adds/removes when I do hg status? For instance, instead of:
A bin/extract-csv-column.pl
A ...
7
votes
2answers
740 views
Why does renaming reg.exe on Windows Server 2008 x64 causes it to fail to run?
I've got a neat question here.
There's a utility called reg.exe thats been shipped with Windows for quite some time. Its very handy to import .reg files from scripts, modify values from scripts, etc, ...
7
votes
5answers
395 views
How can I determine when a file was most recently renamed?
I have a program that compares files in two folders. I want to detect if a file has been renamed, determine the newest file (most recently renamed), and update the name on the old file to match.
To ...
7
votes
7answers
2k views
Is there a way to change a SVN users username through the entire repository history?
When my team first started out with SVN we all just used our first names when committing to the repository, however, now that our team has grown, we are running into issues because we just hired a ...
7
votes
3answers
627 views
can we rename our Rails folders and not have any side effects?
when starting Ruby on Rails programming, I will use
rails first
rails second
and try out things in these "first" and "second" projects
but as they get more mature i want to check them into SVN ...
6
votes
2answers
91 views
In Git, how do I get a detailed list of file changes from one revision to another?
I use a Git repository on my server to version user data files sent to the server. I'm interested in getting a list of changed files between any two revisions.
I know about git diff --name-only ...
6
votes
3answers
191 views
Why is php rename() corrupting my file?
I am using plupload to do an upload of multiple files to my server. Using this, there is a parameter 'url : 'upload.php'. upload.php catches the files as they are received, and might recombine them if ...
6
votes
2answers
2k views
How do I move file a to a different partition in Node.js?
I'm trying to move a file from one partition to another in a Node.js script. When I used fs.renameSync I received Error: EXDEV, Cross-device link. I'd copy it over and delete the original, but I don't ...
6
votes
3answers
691 views
Why might git log not show history for a moved file, and what can I do about it?
I've renamed a couple of files using git mv, used git stash, had a quick look at HEAD (without changing it) then did git stash pop to get the whole lot back again. My moves had disappeared from the ...
6
votes
6answers
1k views
batch renaming 100K files with python
I have a folder with over 100,000 files, all numbered with the same stub, but without leading zeros, and the numbers aren't always contiguous (usually they are, but there are gaps) e.g:
file-21.png,
...
6
votes
4answers
1k views
How to rename model
I made a mistake early in development, and named one of my models with plural noun (Users instead of User). Is there an easy way to rename it and corresponding controller (similar to generating it ...
5
votes
2answers
298 views
Renaming in Git and Mercurial: Accuracy and automaticity
I only have a few days of experience with Git and Mercurial, and I don't have much programming experiences.
In the past few days, I read many posts that comparing the two. Based on what I've read and ...
5
votes
1answer
562 views
How to rename/refactor a variable in Eclipse PDT like in Netbeans
I just saw it in Netbeans IDE. Changing the variable name in the params of a function changes all expressions of that variable in that function. How can I accomplish that with Eclipse PDT? There is a ...
5
votes
3answers
1k views
Linux: remove file extensions for multiple files
I have many files with .txt extension.
How to remove .txt extension for multiple files in linux?
I found that
rename .old .new *.old
substitutes .old extension to the .new
Also I want to do this ...
5
votes
2answers
1k views
Microsoft SQL Compact Edition rename column
Hy,
I'm new with SQL Compact Edition and I am having problems renaming a column. I know that you can rename a table using sp_rename and this doesn't work with columns.
I've searched for an ...
5
votes
4answers
2k views
Unix Bash rename files using a regex [closed]
I would like to rename all files from a folder using a regex(add a name to the end of name) and move to another folder.
It my opinion, it should be looking like this:
mv -v ./images/*.png ...
5
votes
3answers
2k views
Find and rename files with no extention?
So, I've got a bunch of files with no extension. I want to write a windows batch script that will:
Find files with no extension (in a specified folder)
Add .bla to the end of the file name
I'm ...
5
votes
5answers
1k views
Capitalize every file in a directory, in bash, using 'svn mv'
I need to change the capitalization of a set of files in a subversion working copy, like so:
svn mv test.txt Test.txt
svn mv test2.txt Test2.txt
svn mv testn.txt Testn.txt
...
svn commit -m "caps"
...
5
votes
3answers
2k views
How do I rename a SharePoint virtual machine
I am using virtual machines for development,but each time I need a new VM, I copy the file and create a new server, but I need a new name for the server to add it to our network.
After renaming the ...
4
votes
3answers
48 views
Download a renamed file with PHP
I am making a PHP script that will download a file given a name and a version. The files will be stored on the server like this:
/dl/Project1/1.0.txt
/dl/Project1/1.1.txt
/dl/Project2/2.3.jar
...
4
votes
3answers
93 views
Using Perl to rename files in a directory
I'd like to take a directory and for all email (*.msg) files, remove the 'RE ' at the beginning. I have the following code but the rename fails.
opendir(DIR, 'emails') or die "Cannot open directory";
...
4
votes
2answers
143 views
Is rename() without fsync() safe?
Is it safe to call rename(tmppath, path) without calling fsync(tmppath_fd) first?
I want the path to always point to a complete file.
I care mainly about Ext4. Is the rename() promised to be safe in ...
4
votes
1answer
275 views
Visual Studio: Tools to rename projects (and directories) automatically
Similar questions have been asked many times in SO. But most answers suggested to do it manually, which is very time consuming.
Any free tools that can rename projects (and directories) ...
4
votes
4answers
2k views
eclipse workspace: how to rename workspace
There is no option in the file menu to rename a workspace. Is the recommended practice to close eclipse, rename the folder, and re-open? I worry about some potential dangling references in ...
4
votes
2answers
1k views
JavaScript: Object Rename Key
Is there a clever (i.e. optimized) way to rename a key in a javascript object?
A non-optimized way would be:
o[ new_key ] = o[ old_key ];
delete o[ old_key ];
Thanks in advance for your help.
4
votes
1answer
360 views
Renaming app in Android Market during upgrade
I want to rename my published app during next upgrade, will the Android Market treat this as just another regular upgrade and preserve the associated ratings and comments? The app will keep the same ...
4
votes
5answers
256 views
Open dired and select the file associated with the previous buffer?
Let's say I am editing blah.txt with Emacs and I decide to open dired to rename the file blah.txt. When I press C-x d RET (or C-x C-f RET), a dired buffer will show up to display the content of the ...
4
votes
3answers
952 views
Rename files to lowercase in Powershell
I am trying to rename a bunch of files recursively using Powershell 2.0. The directory structure looks like this:
Leaflets
+ HTML
- File1
- File2
...
+ HTMLICONS
+ IMAGES
- Image1
- ...
4
votes
1answer
737 views
how to rename or change file name case on the same location in objective-c
I am working on application which required me to change the filename case retaining the original filename as it is For Example: need to change abc.txt => (ABC.txt or Abc.txt or abc.TXT or abc.Txt) ...
4
votes
1answer
311 views
Oracle: How do I determine the NEW name of an object in an “AFTER ALTER” trigger?
Suppose I have an AFTER ALTER trigger on my Oracle database and I rename some database object (ALTER ... RENAME TO ...). Within the trigger, how do I determine the new name of the database object? It ...
4
votes
5answers
727 views
Linux: Move 1 million files into prefix-based created Folders
I have a directory called "images" filled with about one million images. Yep.
I want to write a shell command to rename all of those images into the following format:
original: filename.jpg
new: ...
4
votes
5answers
2k views
Renaming a set of files to 001, 002, … on Linux
I originally had a set of images of the form image_001.jpg, image_002.jpg, ...
I went through them and removed several. Now I'd like to rename the leftover files back to image_001.jpg, image_002.jpg, ...
4
votes
3answers
494 views
What's the best way to do a cross-platform, atomic file replacement in Perl?
I have a very common situation. I have a file, and I need to entirely overwrite that file with new contents. However, the original file is accessed on every page load (this is a web app), so it can't ...