Batch Script to Login and sync the files from perforce | Step by step guide
Batch Script to Login Perforce server using command line Step 1: Create a new text file Step2: Copy following command %path% @echo on p4 -p172.28.16.2:1666 -uUserName -P”Password” -c”Client_Name” client –o…
Read more »Step by step guide on PerforceDFiles Tool | Perforce Tutorial
PerforceDFiles Use: This tool can be used to add thousands of files and directory in perforce server on single click which is having different-different hierarchy Prerequisite: Java should install and…
Read more »Share common projects with two different projects in CVS
Share common projects with two different projects in CVS If there are two or more projects in the repository, some of the files are common in these two projects and some…
Read more »What makes P4Win better than P4V? – P4V deficiencies
P4V deficiencies compared to P4Win Here’s list of P4V deficiencies & features missing as compared to P4Win… 1). In P4V you can’t paste paths onto the tree view as way…
Read more »Benefits of CVSNT, What are the advantages of CVSNT over CVS ?
Advantages of CVSNT over CVS Feature CVSNT CVS Server Supports authentication via Microsoft Active Directory or SSH (windows only) YES NO Set enforced protocols allow server to lock out clients…
Read more »Major differences between CVS and CVSNT | CVS Vs CVSNT
Major differences between CVS and CVSNT | CVS Vs CVSNT CVSNT was started as a variation (or branch) of CVS in 1999 because patches contributed to CVS were not considered…
Read more »SVN Installation | Subversion Installation guide | Subversion Setup
Install CollabNet SVN Command Line Client in Red Hat Link: http://www.collab.net/downloads/subversion/redhat.html 1. Platform and configuration Product: CollabNet Subversion client Platforms: Red Hat Enterprise Linux releases 4 and 5 (all versions,…
Read more »Process to Install CollabNet SVN Command Line Client in Windows
Link: http://www.collab.net/downloads/subversion/ 1. Platform and configuration Product: CollabNet Subversion server Certified platforms: Windows XP SP2, Win 2003(Standard Edition) R2 Apache version: 2.2.8 ViewVC: 1.0.5 (requires ActiveState…
Read more »How to Install CollabNet SVN Command Line Client in Solaris?
Link: http://www.collab.net/downloads/subversion/solaris.html 1. Platform and configuration Product: CollabNet Subversion client Platforms: Solaris 10 SPARC Prerequisite: You must be a superuser (root) to install and uninstall CollabNet Subversion. 2. Import/Update CollabNet…
Read more »How to Access SVN when client is under proxy ?
The Subversion client can go through a proxy, if you configure it to do so. First, edit your “servers” configuration file to indicate which proxy to use. The files…
Read more »Running Native Programs in Ant
Running Native Programs in Ant Ant, while extremely powerful and flexible, can’t always offer everything you want to do. If this is the case, you can use the <exec> task,…
Read more »A script to find all users who have not set passwords
Write a script to find all users who have not set passwords. #!/usr/bin/ruby require “P4” p4 = P4.new p4.parse_forms p4.connect p4.run_users.each do |u| user = p4.fetch_user( u[ “User” ] )…
Read more »Script to list the clients in descending access date order
Write a script to list the clients in descending access date order (for deleting obsolete clients). #!/usr/bin/ruby require “P4” p4 = P4.new p4.tagged p4.connect clients = p4.run_clients.sort {|a,b|…
Read more »Batch Script to login to perforce and sync the source code to specific location
Batch Script to login to perforce and sync the source code to specific location @echo offcd /d “E:\Development\AnthillPro\work\perforce\SEABU\Module\Features1” “p4” -c SYSTEMBUILDSTAR -p 10.0.0.3:1666 -u UserName -P UserPass sync //SEABU/Module/Features1/… //SYSTEMBUILDSTAR/Module/Features1/…
Read more »How to Login Perforce Server by Using Batch File ?
Login perforce server using local client through batch script @echo off p4 -p10.0.0.3:1666 –uUser_Name -P”User_Pass” -c”PERFORCE_CLIENT” client –o Inputs: -p à Server Address -u à User Name -P à…
Read more »Steps to Import Module Process by using WinCVS
Import Normally refers to the process of creating a new module in the repository by sending an entire directory structure. Module A directory hierarchy. A software project normally exists as…
Read more »Introduction of p4win | p4win Overview | What is p4win?
P4Win is a Windows-Explorer-style program that helps you manage files that are stored in the Perforce software configuration management system. Using P4Win, you can view files, check them in and…
Read more »