00:04:40 *** Thasmo has quit () 00:17:50 It seems like the person who made that beta lost interest. It is several versions behind and only has like 3 posts. How could I request that someone make an official Git Portable App? 00:18:55 I would myself but I don't know Linux well enough to do that, or have studied the portable apps specs. 00:19:32 I remember that msysGit does have a portable version. 00:20:26 Here is it: http://msysgit.googlecode.com/files/PortableGit-1.7.7.1-preview20111027.7z 00:22:10 Yeah. The only issue is setting the home directory to the flash drive which I can't find how to do automatically. The bat file posted in the beta git app thread doesn't work for the latest version. 00:22:44 The other issue is that the bash path seems locked to the git directory - the one I run git bash from. 'cd ..' doesn't do anything. 00:23:00 I need to run git to work with repos in other areas of my flash drive. 00:24:11 There also needs to be a launcher to run the batch file so it shows up in the portable app menu, which I don't know how to make... I wish the apps menu had more flexability in allowing you to add apps and even files. 00:24:42 Try specifying a full path when switching directories, like cd /cygdrive/c/path/to/your/repo 00:24:45 Setting the home directory is necessary to get git to recognize the rsa keys so I can access the public repo. 00:25:59 so basically you only need a proper launcher and then add that to the platform 00:26:17 Specifying a full path works. I just can't find out how to automate the two tasks: 00:26:27 1) setting the home directory to a place on the flash drive. 00:26:39 2) Setting the work directory to my repo dir. 00:28:09 Well, Git's support for Windows is very... difficult. 00:29:10 Yea, at least to a windows person like me. 00:29:42 Can't you consider moving to something else like Mercurial? 00:30:01 No, Im an employee of a project. 00:30:07 That uses a git repo. 00:30:17 flash3d8: for the home directory, git bash will take %HOME% into account 00:31:22 Yes. I can use Git on my flash drive my manually opening bit-bash.bat, explicitly setting the home variable using HOME=... in bash, and explicity setting the working directory. Then its good to go. 00:31:23 You can use an extension like Hg-Git. I used to use it to push my portable apps to Gitorious. 00:31:52 flash3d8: you can modify git-bash.bat to set %HOME% for you 00:32:17 How? That would be great. My attempts at a batch wrapper failed. 00:32:38 where is your bat located and where is your desired home? 00:33:01 http://pastebin.com/vqnKnSGZ 00:33:27 Bat location: [drive]:/Git/git-bash.bat 00:33:41 Home location: [drive]:/Git/home/ 00:34:07 these are the contents of your git-bash.bat? 00:34:08 Repo dir: [drive]:/Documents/Web Projects/ 00:34:27 No, my wrapper. 00:34:35 ah, okay 00:34:39 I haven't modified git bash. 00:35:04 it looks correct :| 00:35:47 it will set %HOME% to "[drive]:\Git\home\" 00:36:39 Im sure it sets the variables correctly, which means that git doesn't use those variables to set the envir variables in the virtual bash. 00:36:45 I echoed all of them. 00:37:23 so they show up in the launched git bash correctly? i.e. $HOME points to the correct path? 00:37:35 Thats why I can't find how to automatically do this. I don't know of a 'execution hook' to insert some code. 00:38:12 execution hook? 00:38:27 They show up unchanged in git bash. The working directory is the git directory and the HOME variable is the user dir ie C:\User\... 00:38:33 also, could you post your git-bash.bat, as i don't have any and msysgitportable is huge 00:39:06 .bashrc maybe? 00:39:09 Execution hook meaning a way to tell git to run my code before proceeding. 00:40:03 Git-bash.bat: http://pastebin.com/CASSPhWj 00:40:38 .bashrc was referenced in the PA beta app thread I don't know what it is or how to use it. 00:42:07 In the git-bash changelog: "* Remove the SET of USERNAME and HOME." 00:43:19 flash3d8: can you change the last line in your launcher to "call git-bash.bat" instead of just "git-bash.bat" and see if that helps 00:45:34 Hmmmm. Seems like that makes the HOME variable set correctly, but the working directory is still locked to the git dir. 00:45:58 Testing a pull to see if it reads the rsa keys. 00:47:02 Yay the pull works! Thats a step in the right direction. 00:48:36 Now how can I change the default working directory, and make a launcher for it (to work with portable apps)? 00:49:51 http://pastebin.com/z4UfBZtT 00:49:59 look at lines 12 and 13 00:50:13 uh, actually 00:51:01 I saw that. I thought it refered to the shortcut made by git when installed non-portable. 00:51:02 http://pastebin.com/9aqBgjSF 00:51:05 line 14 as well 00:52:50 try if that gives you the desired effects :) 00:54:37 I thought it would work, but no the default directory stays the same. 00:55:04 It doesn't tell me in bash what the default directory is. I test to see which one by using mkdir TEST. 00:55:16 you can use pwd for that 00:56:00 That resolves to / 00:56:14 Which is what bash says it is. It just shows paths relative to the cwd. 00:56:26 And doesn't allow you to cd .. 00:57:08 okay, and if you test using mkdir, where does your test folder end up? 00:57:25 drive:\git\test ? 00:57:28 In the git dir, which happens to be. 00:57:31 That 00:57:48 that is...remarkable 00:58:37 I think that is part of the portable functionality of git.... setting the cwd to the git directory. 00:59:53 alright, i will download msysgit portable and see if i can reproduce your problem 01:00:16 in the mean time, here's a guide that will allow you to add your launcher.bat to the portableapps menu: http://portableapps.com/node/21757 01:02:34 Coolz. Reading... 01:02:58 Im also trying to ask in #git on freenode to get some insight. If I find anything I will let you know. 01:03:27 Hopefully between us, we can get an official Git portable app =) 01:03:35 it seems to be more of a bash problem imo, but go ahead, maybe someone in there sees what i'm missing 01:03:54 well, you'd need to find a dev that's willing to support git as portable package 01:04:37 I thought that was what I was doing here... didn't know if you were a dev but I thought this is the place to ask. 01:04:52 this is the place to ask :) 01:07:55 You wrote the guide lol. 01:10:34 i did 01:11:05 i am not sure what goes wrong with your git bash, it seems to behave as expected here 01:13:12 Maybe you could try me on team viewer? I followed the basic install instructions of git. 01:15:24 if you want me to, yes, i can take a look 01:15:27 pm me your info 01:15:48 k 01:15:56 *** PlauSocks is now known as PlauSocks|AFK 01:32:04 Seriously sar3th, https://www.odesk.com/users/~~9a647081ebff17b0. Send me an email at jacob_w@odesk.com if you or portable apps needs some web work. I could contribute some time. 01:33:12 I need to get going. Cya guys. 01:33:30 thanks flash3d8 and goodbye :) 01:34:39 *** flash3d8 has quit (Quit: Page closed) 01:36:50 *** kAlug is now known as Aerok 01:49:04 When are projects considered abandoned? I mean how long should I wait for a reply asking the author about his projects status? 01:50:56 sar3th: What kind of project? 01:51:02 a portableapp 01:51:08 in this case, msysgit portable 01:51:34 http://portableapps.com/node/22861#comment-186025 01:52:49 *** PlauSocks|AFK is now known as PlauSocks 01:53:26 That's the only post made by that user, what means that his last appearance was in March 2010. 01:55:28 I usually wait 1 week. 01:55:36 okay 01:56:29 *** techfreak244 has quit (Ping timeout: 240 seconds) 01:56:38 What means I can already take over HTTrack. 01:59:24 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps 02:04:36 *** OliverK|Away is now known as OLiverK 02:04:41 *** OLiverK is now known as OliverK 02:05:17 *** PlauSocks is now known as PlauSocks|AFK 02:06:13 *** PlauSocks|AFK has quit (Read error: Connection reset by peer) 02:06:55 *** SergentSiler (~Kyle@69.177.200.39) has joined #portableapps 02:06:55 *** SergentSiler has quit (Changing host) 02:06:55 *** SergentSiler (~Kyle@unaffiliated/sergentsiler) has joined #portableapps 02:06:59 SergentSiler is a pony 02:07:00 ... 02:07:08 *** SergentSiler is now known as PlauSocks|AFK 02:08:47 .tell JohnTHaller tonight 02:08:47 OliverK: I'll pass that on when JohnTHaller is around. 02:15:20 *** sar3th has quit (Quit: "Our culture doesn't get smarter, it just finds new ways of being retarded.") 03:02:29 *** techfreak244 has quit (Ping timeout: 240 seconds) 03:50:03 *** PlauSocks|AFK is now known as PlauSocks 04:34:39 *** GordCaswell (~GordCaswe@unaffiliated/ve4jhj) has joined #portableapps 04:34:44 GordCaswell is the developer of Armagetron Advanced Portable, Evince Portable & ZSoft Uninstaller Portable 04:34:56 .seen JohnTHaller 04:34:56 GordCaswell: I last saw johnthaller at 2011-11-06 22:24:13 UTC on #portableapps 05:13:38 *** PlauSocks is now known as PlauSocks_ 05:13:45 *** PlauSocks_ is now known as PlauSocks 05:56:43 *** PlauSocks is now known as PlauSocks|AFK 06:21:22 *** GordCaswell has quit (Quit: Leaving) 06:21:34 *** Zarggg has quit (Quit: Rebooting client...) 06:21:52 *** Zarggg (~zarggg@24.229.139.169.res-cmts.sm.ptd.net) has joined #portableapps 07:26:19 *** AlleyKat has quit (Ping timeout: 252 seconds) 08:33:21 *** Aerok has quit (Quit: Nettalk6 - www.ntalk.de) 09:56:54 *** vf2nsr (~vf2nsr@unaffiliated/vf2nsr) has joined #portableapps 09:59:11 *** vf2nsr has quit (Client Quit) 10:33:30 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps 12:28:37 *** AlleyKat (~Miranda@0x573a58b7.ronnqu1.dynamic.dsl.tele.dk) has joined #portableapps 13:58:54 *** techfreak244 has quit (Ping timeout: 240 seconds) 14:11:02 *** OliverK has quit (*.net *.split) 14:12:11 *** Mir has quit (Excess Flood) 14:12:54 *** z3uS has quit (Ping timeout: 240 seconds) 14:13:01 *** Mir (~Mir@pool-71-109-220-84.lsanca.dsl-w.verizon.net) has joined #portableapps 14:13:47 *** Guest74083 has quit (Write error: Connection reset by peer) 14:14:06 *** ZachThibeau has quit (Ping timeout: 240 seconds) 14:14:16 *** Suiseiseki has quit (Ping timeout: 256 seconds) 14:15:08 *** OliverK|Away (~OliverK@unaffiliated/oliverk) has joined #portableapps 14:15:30 *** ZachThibeau (~ZachThibe@99.198.122.68) has joined #portableapps 14:15:33 ZachThibeau is the main developer of PChat and is a developer with PortableApps.com 14:15:33 *** ZachThibeau is now known as Guest14156 14:15:52 *** Bensawsome (~Bensawsom@c-71-235-5-131.hsd1.ct.comcast.net) has joined #portableapps 14:15:53 Bensawsome is from the PortableApps.com forums, likes waffles VERY MUCH, and has a site at http://www.bensawsome.com . He also maintains StatBot and the IRCStats pages @ http://www.bensawsome.com/ircstats 14:16:04 *** Bensawsome is now known as Guest59224 14:20:08 *** Suiseiseki (~desu@wikipedia/Antonio-Lopez) has joined #portableapps 14:20:22 *** z3uS (~z3us@66.7.214.196) has joined #portableapps 14:23:16 *** Suiseiseki has quit (Read error: Connection reset by peer) 14:23:16 *** Suiseiseki (~desu@cpe-76-184-83-188.tx.res.rr.com) has joined #portableapps 14:23:16 *** Suiseiseki has quit (Changing host) 14:23:16 *** Suiseiseki (~desu@wikipedia/Antonio-Lopez) has joined #portableapps 14:31:22 *** Guest14156 is now known as ZachThibeau 14:31:28 *** ZachThibeau has quit (Changing host) 14:31:28 *** ZachThibeau (~ZachThibe@unaffiliated/zachthibeau) has joined #portableapps 14:31:29 ... 14:59:59 *** rcmaehl (~rcmaehl@unaffiliated/rcmaehl) has joined #portableapps 15:06:04 *** rcmaehl has quit (Quit: Power-idling in 59 channels on 12 networks.) 15:06:21 *** rcmaehl (~rcmaehl@74-141-211-110.dhcp.insightbb.com) has joined #portableapps 15:06:21 *** rcmaehl has quit (Changing host) 15:06:21 *** rcmaehl (~rcmaehl@unaffiliated/rcmaehl) has joined #portableapps 16:20:23 *** sar3th (~sar3th@krlh-d9be7c97.pool.mediaWays.net) has joined #portableapps 16:20:31 *** sar3th has quit (Changing host) 16:20:31 *** sar3th (~sar3th@unaffiliated/sar3th) has joined #portableapps 16:30:35 *** benedikt93 (~benedikt9@unaffiliated/benedikt93) has joined #portableapps 16:34:55 *** rcmaehl has quit (Quit: Power-idling in 59 channels on 12 networks.) 17:32:06 *** z3uS has quit (Ping timeout: 240 seconds) 17:35:18 *** z3uS (~z3us@66.7.214.196) has joined #portableapps 17:55:48 *** pa_9111 (45f867a0@gateway/web/freenode/ip.69.248.103.160) has joined #portableapps 17:56:26 *** pa_9167 (6c304451@gateway/web/freenode/ip.108.48.68.81) has joined #portableapps 17:56:42 is the donation to portableapps tax deductable? 17:57:01 I am a US resident. 17:57:01 *** pa_9167 has quit (Client Quit) 17:57:47 *** pa_9111 has quit (Client Quit) 17:59:13 *** pa_7907 (45f867a0@gateway/web/freenode/ip.69.248.103.160) has joined #portableapps 18:00:12 Is there an app that automatically update alll the portableapps that I have installed ? 18:02:15 pa_7907, yes, the latest pre-releases of the upcoming platform version can do this for you. 18:03:14 Thank god. What is the link? 18:06:21 benedikt93 is there usb bootable linux? 18:09:21 http://portableapps.com/download 18:14:09 thanks. 18:47:47 *** Thasmo (~thasmo@d86-32-70-74.cust.tele2.at) has joined #portableapps 20:07:55 *** pa_7907 has quit (Quit: Page closed) 20:38:59 *** pa_9337 (46bed1d8@gateway/web/freenode/ip.70.190.209.216) has joined #portableapps 20:40:39 Does Portable Thunderbird have all the same keyboard shortcuts as regular Thunderbird? 20:48:53 I'd guess so, as it's the same application that is basically only launched in a different manner (it's also slightly modified IIRC, but not to remove functionality) 20:53:48 *** AlleyKat has quit (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 20:54:24 *** AlleyKat (~Miranda@0x573a58b7.ronnqu1.dynamic.dsl.tele.dk) has joined #portableapps 20:55:27 *** Thasmo has quit (Read error: Connection reset by peer) 20:56:26 Thanks for the quick response! I’m trying to keep everything synched between home and office. I work off of a flash drive at all times, carrying all my documents back and forth. Any thoughts on benefits of working on Imap versus using Tbird Portable on the flash? I really care about keyboard shortcuts (protects my hands) and a clean, quick interface. 21:00:36 *** Thasmo (~thasmo@d86-32-70-74.cust.tele2.at) has joined #portableapps 21:05:00 By the way, for ignorant people like me it would be great if the Live Chat instructions began with "type your question in the white box below the pale blue section, then hit enter." Could someone forward this suggestion to the right person? I have not clue about that, either... 21:15:42 *** benedikt93 has quit (Quit: Bye ;)) 21:19:28 *** Simeon (~simeon@dslb-094-218-246-146.pools.arcor-ip.net) has joined #portableapps 21:19:33 hi all 21:27:46 *** Simeon has parted #portableapps (None) 21:28:06 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps 21:35:31 pa_9337: hehe maybe that suggestion should be considered :P but really... 21:38:15 for the Tbird question, well.. I'd go for TB using IMAP, were I to choose.. 21:39:47 given that I'd go for TB at all, but re. the shortcut comment, otherwise I'd just use a webmail thru portable Firefox 21:41:00 I surely wouldn't commit my home/work emails by using a pop client on a portable flashdrive 22:04:23 This is just great http://blog.gpodder.org/2011/11/gpodder-300-397d-released.html I have some work to do :/ 22:37:03 *** kaeos (~Miranda@90.164.135.241) has joined #portableapps 22:52:12 *** techfreak244 is now known as techfreak243 23:01:50 *** rcmaehl (~rcmaehl@unaffiliated/rcmaehl) has joined #portableapps 23:08:13 *** kaeos has quit (Quit: kaeos) 23:23:24 *** PlauSocks|AFK is now known as PlauSocks