[ilugd] another question about GIT

2013-01-30 Thread Nalin Savara
Hi Friends...
The same problem again.
I built a product upon a HelloWorld type application given with a open
source SDK.

Hence ; if my files were in:
/sdkpath/samples/helloWorld

only the folder helloWorld I made into git repos-- and repeatedly
committed.

Now; I want to make changes to the parent tree also-- and commit the entire
parent tree to a GIT main repository-- eg: bitbucket.

However, I notice that when I do a:
 git mv [folder-name] [target-name]
OR
git mv [filename] [target-name]

then... the entire commit history is lost-- and doing a diff with the base
file-- just shows file renamed.


How to avoid this-- and retain the commit history ?

Do let me know...

Thanks and Regards,

Nalin
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [LUG@IITD:16837] another question about GIT

2013-01-30 Thread Shakthi Kannan
Hi,

--- On Wed, Jan 30, 2013 at 3:05 PM, Nalin Savara nsn...@gmail.com wrote:
| Hence ; if my files were in:
| /sdkpath/samples/helloWorld
|
| only the folder helloWorld I made into git repos-- and repeatedly
|
| Now; I want to make changes to the parent tree also-- and commit the entire
| parent tree to a GIT main repository-- eg: bitbucket.
\--

Firstly, you need to stop thinking in terms of files and folders.

Git doesn't track folders, but, content changes. Give us the big
picture. What is your workflow like, and why do you want to keep
moving the folders?

SK

-- 
Shakthi Kannan
http://www.shakthimaan.com

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] CFP :: gnuNify 2013 @ Pune 15/Feb/2013 to 17/Feb/2013

2013-01-30 Thread Arun Khan
Greetings,

gnuNify  2013 @ Pune is an annual FOSS event organized by the Pune LUG
and SICSR (Symbiosis Institute of Computer Studies and Research)

This year's event will run from 15/Feb/2013 to 17/Feb/2013 (Fri - Sun).

The CFP (call for paper) is open.

The agenda for the three days are as follows:

Friday 15/Feb/2013
All day OpenStack miniconf

Saturday 16/Feb/2013
General Cloud Computing
Sys Admin tracks/workshops.

Sunday 17/Feb/2013
Mozilla Hackathon
Wikipedia Language Summit.

Alongside, there will be talks and workshops on other topics.

If you have an interesting / compelling talk/workshop to share, please
visit the site, register yourself and submit your CFP.

For details please visit the gnuNify website http://www.gnunify.in
For more info on track / events http://www.gnunify.in/2013/events

Speakers from out of Greater Pune area -- boarding and lodging will be
provided.   Travel -- your home town  Pune is reimbursable (up to
Rs. 5000).

Any specific query not answered on the web site or the FAQ.  Please
use the Contact form http://www.gnunify.in/contact.  Please do not
post query to this mailing list and/or send personal emails.

Hope to see many of you at the event.

PS - please forward this to other LUGs in your area.

Thanks and regards,
-- Arun Khan

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] unsubscribe

2013-01-30 Thread Puneet Gupta
On Wed, Jan 30, 2013 at 7:55 PM, Arun Khan knu...@gmail.com wrote:

 Greetings,

 gnuNify  2013 @ Pune is an annual FOSS event organized by the Pune LUG
 and SICSR (Symbiosis Institute of Computer Studies and Research)

 This year's event will run from 15/Feb/2013 to 17/Feb/2013 (Fri - Sun).

 The CFP (call for paper) is open.

 The agenda for the three days are as follows:

 Friday 15/Feb/2013
 All day OpenStack miniconf

 Saturday 16/Feb/2013
 General Cloud Computing
 Sys Admin tracks/workshops.

 Sunday 17/Feb/2013
 Mozilla Hackathon
 Wikipedia Language Summit.

 Alongside, there will be talks and workshops on other topics.

 If you have an interesting / compelling talk/workshop to share, please
 visit the site, register yourself and submit your CFP.

 For details please visit the gnuNify website http://www.gnunify.in
 For more info on track / events http://www.gnunify.in/2013/events

 Speakers from out of Greater Pune area -- boarding and lodging will be
 provided.   Travel -- your home town  Pune is reimbursable (up to
 Rs. 5000).

 Any specific query not answered on the web site or the FAQ.  Please
 use the Contact form http://www.gnunify.in/contact.  Please do not
 post query to this mailing list and/or send personal emails.

 Hope to see many of you at the event.

 PS - please forward this to other LUGs in your area.

 Thanks and regards,
 -- Arun Khan

 ___
 Ilugd mailing list
 Ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [LUG@IITD:16837] another question about GIT

2013-01-30 Thread Amar Akshat
Nalin,

Somethings I wish to point out after extensive usage of GIT and I will
change the terminology a bit, by referring to folders as directories.
So for example if you have a folder $HOME/sample_repo, and you do,

vim x (write Hello)
vim y (write World)

you do
git add -A
and then you do
git commit -a -m Sample commit 1

Then you do

mkdir abc
git mv x abc/x
git mv y abc/y

git add -A
git commit -a -m Sample commit 2

Few things.


   - git diff, git show etc are not stored in git, they are generated when
   you execute the command. So essentially, currently git show HEAD will tell
   you in last commit you deleted the file x (which included deleting the line
   Hello)and created a new file with content Hello, same for y. Git diff,
   doesn't have a file x in parent dir in this commit to find diff.
   - Git doesn't store commits, it stores a snapshot. So for example if you
   have 100 files and you make 100 commits, git stores 10,000 files (in a
   compressed manner).
   - Commits are never lost, and if you have checked out another branch and
   can't see some commit, you can always do a git reflog.

As Shakthi said, if you tell us your complete scenario, we might suggest
something. I personally follow the following structure in my repo
directories.

$HOME/git_repo_co
.git
src/
extlib/
release/
etc/
notes/
Install
Makefile

Where release is git-ignored, and I spit my binaries into release/bin/

All source files are tracked int src/
May be this helps.


On Wed, Jan 30, 2013 at 8:38 PM, Shakthi Kannan shakthim...@gmail.comwrote:

 Hi,

 --- On Wed, Jan 30, 2013 at 3:05 PM, Nalin Savara nsn...@gmail.com
 wrote:
 | Hence ; if my files were in:
 | /sdkpath/samples/helloWorld
 |
 | only the folder helloWorld I made into git repos-- and repeatedly
 |
 | Now; I want to make changes to the parent tree also-- and commit the
 entire
 | parent tree to a GIT main repository-- eg: bitbucket.
 \--

 Firstly, you need to stop thinking in terms of files and folders.

 Git doesn't track folders, but, content changes. Give us the big
 picture. What is your workflow like, and why do you want to keep
 moving the folders?

 SK

 --
 Shakthi Kannan
 http://www.shakthimaan.com

 ___
 Ilugd mailing list
 Ilugd@lists.linux-delhi.org
 http://frodo.hserus.net/mailman/listinfo/ilugd




-- 


Thank you...

*Amar Akshat (アマール)*

 *Walking on water and developing software from a specification are easy
if both are frozen.*
___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


Re: [ilugd] [OT] Recommendation for Wi-Fi AP.

2013-01-30 Thread Vivek Kapoor

On 01/30/2013 12:09 PM, Arun Khan wrote:

Greetings,

I am looking for Wi-Fi AP that:

1. Is stable (does not require frequent reboot or power OFF/ON)
2. Supports 802.11 b/g/n
3. Supports up to WPA2-Enterprise (RADIUS auth)  - a *must*
4. Has external Antenna

Desirable - Accepts DD-WRT / OpenWRT images.

Many list members may be using these Wi-Fi features in their own
office / home and I would appreciate if you could share you
experience.

Please mention brand/model.


I've been happy using ASUS RT-N66U. It supports b/g/n and has 3 external 
antennas which you can remove too. It has 3G backup mode via a USB 
dongle. The maximum I've run it without a reboot is for 9 days, but 
that's because the 3G dongle that I use creates trouble after 8-9 days, 
the WiFi continues to work though without issue.


As for WPA2-Enterprise, I haven't used it myself. What I see in the 
dropdowns available is

WPA2 Enterprise (which gives an option for AES),
and,
Radius with 802.1x

I've not used Radius earlier, so not sure if that's what you're looking for.

Regarding the firmware, there are multiple alternate firmwares 
available. I myself am using Merlin's firmware instead of the stock. It 
allows ssh into the system, and I can sort of use it as a computer, with 
a package management option. Additional packages can be installed since 
it has multiple USB ports, and you can have a storage device attached.


The cost is though on a slightly higher side - Rs. 14.5K I'd paid late 
last year.


Regards
Vivek Kapoor
http://exain.com

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd


[ilugd] Fwd: KDE Meetup

2013-01-30 Thread Arun Khan
Forwarding without any prejudice.

-- Arun Khan


-- Forwarded message --
From: Shahid Farooqui shahidfaroo...@gmail.com
Date: Thu, Jan 31, 2013 at 11:46 AM
Subject: [PLUG] KDE Meetup
To: Pune GNU/Linux Users Group Mailing List plug-m...@plug.org.in


Hi..

Google Developer Group, DA-IICT and the renowned International KDE
Community are glad to announce KDE Meetup 2013.  This two day
conference scheduled in February will bring together Qt Developers,
KDE contributors, open source enthusiasts and users from all across
the nation. The meetup will give you the opportunity to learn, share,
contribute, innovate and create limitless possibilities by using most
emerging technologies.

 KDE Meetup is the first large scale open source conference to be held
in Gujarat and the largest KDE/Qt event in India since conf.kde.in in
2011. This meetup is an excellent platform for you to learn about FOSS
and start contributing to it. The participants will experience the KDE
world, understanding the latest developments happening in it. The
Talks, Tutorials, Interactive Sessions, Coding Jams will lay your
foundations to become a part of KDE community and even participate in
programs like Google Summer of Code and Season of KDE. Last year, KDE
was biggest participating organizing in GSoC with selection of 60
students.The sessions will range from the beginner to advanced level,
to facilitate all kinds of participants.

This meetup will prove to be of immense importance to anyone who is
starting or contributing to the developer's world using Qt (Desktop,
Mobile or Embedded Applications). Teachers and trainers, will also
benefit from this event by gaining knowledge about the latest Qt and
KDE based FOSS technologies and using them in their day to day lives.
The conference will be headlined by four

keynote speakers combined with some hands on experience with
contributing to KDE. The meetup is primarily designed to bring the
research and developmental interests of people in open source to the
forefront. KDE Meetup will result in networking, mentoring, and
increasing the visibility for KDE contributors.

Date  Venue

Venue:   Dhirubhai Ambani Institute of Information and Communication
Technology, Gandhinagar

Date:  23rd - 24th Feb, 2013

The registrations for the conference are now open. Please register
yourself on http://www.gdgdaiict.com/kdemeetup/

Thanks Regards,

Shahid

___
Pune GNU/Linux Users Group Mailing List

___
Ilugd mailing list
Ilugd@lists.linux-delhi.org
http://frodo.hserus.net/mailman/listinfo/ilugd