I referred "How to create a patch for a directory in ClearCase?" . My question is extension of this. I have a snapshot view, which points to a projects branch. I updated the view and some files got updated. Now how can I create a zip file of these updated files (including directory structure), so that I can unzip the file to desired location, and updated files gets copied there.
How to create a patch from clearcase snapshot view?
248 Views Asked by Mandar Kale At
1
There are 1 best solutions below
Related Questions in DIFF
- Git > diffs filtered, show only certain changed classes/files
- Diff on hibernate envers revisions
- TF diff entire set of files at once rather than one at a time
- Git: Differences since a commit
- Highlight changes in code since last commit in Android Studio
- Finding the diff of two lists of strings
- How can I update kernel source to newer one without losing added code?
- Comparing text files using Excel
- How do you access the unaltered source of a page via phantomjs
- Compare more than two documents
- Check for differences of two sets in Elm
- Csv diff using powershell and showing (highlighting) changes on the new file
- ignore pattern with backward slash in diff command
- Compare a mongo diff on two collections
- Differences between the staged and unstaged versions of the same file, using difftool
Related Questions in CLEARCASE
- How to view difference between local hijacked file and the server copy of the file in clearcase
- Delete branch in clearcase in Eclipse using GUI operation
- Cleartool annotate command giving error - Not an object in a vob:"java file"
- How to get the logs in XML file in cleartool. I want the output of command cleartool lshistory in XML file
- clearcase rebase permission to specific person
- Why ClearCase Explorer is that ClearQuest Web is not supported UCM integration?
- Unable to deliver stream : error detected by clearacase subsytem
- Not able to see clearcase in Visual studio 2010
- CM API - Clearcase Resource Proxy Unable to Resolve
- How to check if a file is checked out (Clearcase / Python)
- Open a text file with a dot in the file path
- How to get into a vob on rcleartool
- Clearcase make vs Gnu make output
- How to launch legacy GUI of Clearcase from MSDOS
- Version Tree in Clear Case Explorer is not working
Related Questions in PATCH
- Patch update Authenticated User in Laravel
- Magento Fatal Error in /IndexController.php on line 23
- Rails 4 patch request does not update attributes
- Can I apply changes from a perforce patch(downloaded from review board) to my code
- Forbidden when trying to patch User
- When a security update is applied as a patch, does the product name change?
- Patch on a modified file
- Postgresql: How to apply pg_dump --exclude-table-data patch?
- WSO2 Carbon Core 4.2.0 Patch 10 build failed
- How to do delta extraction from GIT for patching?
- Wix ToolSet Patch Creation Using "Patch Creation Properties"
- NetLogo 3D: Transparent Patches
- Using GNUwin patch
- Onenote API (REST) - PATCH append - "must include a 'commands'" error when Commands is already supplied (?!)
- creating an empty file from diff using svn patch
Related Questions in SNAPSHOT
- "An error occurred opening snapshot" Process Monitor
- Capture an image using DirectShow via webcam in vb.net
- how to create a snapshot using Xcode 7?
- Gradle: updated dependencies not used
- Taking EBS snapshot for multiple mongo node EBS volumes in mongoDB cluster
- Is it possible to take a snapshot of combined views including the camera?
- Can anyone give a snapshot example of elastic-search by using python?
- Xamarin form: Is there a way to get a thumbnail from the video
- schedule RDS database shutdown and startup
- vmware quiescence snapshot
- AWS RDS save snapshot of selected tables
- Automatic creation of snapshots using AWS Lambda
- Shell script to check most recent ZFS snapshot
- could not GET http.../artifactory/oss-snapshot-local/..bolts-android-24.2.0.pm
- PhantomJS snapshots of Angularjs (Argument 'MainCtrl' is not a function, got undefined)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
A diff patch required a known base. Unless you set a label on your view just before the
cleartool update(orsetcs -current), you won't be able to produce a patch (the state of the view before the update would be lo.You would need to parse the log produced by a cleartool update in order to zip only those files and unzip (override) said files to your destination folder.
Since you just updated your snapshot view, the folder content represent the files at the right versions (ie, at the versions selected by the config spec)
All you need to do is zip the root view folder, and you can unzip (override) its content somewhere else.